/* * Copyright © 2005 Atheme Development Group * Rights to this code are as documented under doc/LICENSE. * * Cryptographic module support. * * $Id: crypto.h,v 1.1 2007/07/19 08:24:50 pippijn Exp $ */ #ifndef CRYPTO_H #define CRYPTO_H E char *(*crypt_string) (char *str, char *salt); E char *generic_crypt_string (char *str, char *salt); E bool crypt_verify_password (char *uinput, char *pass); E char *gen_salt (void); E bool crypto_module_loaded; #endif