diff options
author | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-11-02 05:22:35 +0000 |
---|---|---|
committer | DukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-11-02 05:22:35 +0000 |
commit | 9a0b1efc24e84c7cf17a0e87c98fd1e22fe1c356 (patch) | |
tree | 3abf675a834d23b9064dce2333f7a2e5d0df336a /include/extern.h | |
parent | d2362719b256f556b862a85dd73a806ccc2faebe (diff) |
added a way to load multiple encryption modules at the same and to switch between encryption methods
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2602 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/extern.h')
-rw-r--r-- | include/extern.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/extern.h b/include/extern.h index eda18ebc0..c73a27de0 100644 --- a/include/extern.h +++ b/include/extern.h @@ -405,13 +405,14 @@ E long unsigned int UserKey3; E int convert_ircservices_44(); /**** encrypt.c ****/ -E char *EncModule; +E char **EncModuleList; +E int EncModulesNumber; E void initEncryption(); E int enc_encrypt(const char *src, int len, char *dest, int size); E int enc_encrypt_in_place(char *buf, int size); E int enc_encrypt_check_len(int passlen, int bufsize); E int enc_decrypt(const char *src, char *dest, int size); -E int enc_check_password(const char *plaintext, const char *password); +E int enc_check_password(const char *plaintext, char *password); E void encmodule_encrypt(int (*func)(const char *src, int len, char *dest, int size)); E void encmodule_encrypt_in_place(int (*func)(char *buf, int size)); E void encmodule_encrypt_check_len(int (*func)(int passlen, int bufsize)); |