/* * Copyright © 2005 Atheme Development Group * Rights to this code are as documented under doc/pod/license.pod. * * Cryptographic module support. * * $Id: crypto.h,v 1.3 2007/08/28 17:12:24 pippijn dead $ */ #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