#include "module.h"
Go to the source code of this file.
Functions | |
| int | plain_encrypt (const char *src, int len, char *dest, int size) |
| int | plain_encrypt_in_place (char *buf, int size) |
| int | plain_encrypt_check_len (int passlen, int bufsize) |
| int | plain_decrypt (const char *src, char *dest, int size) |
| int | plain_check_password (const char *plaintext, const char *password) |
| int | AnopeInit (int argc, char **argv) |
| void | AnopeFini (void) |
| void AnopeFini | ( | void | ) |
Definition at line 34 of file enc_none.c.
References encmodule_check_password(), encmodule_decrypt(), encmodule_encrypt(), encmodule_encrypt_check_len(), and encmodule_encrypt_in_place().
| int AnopeInit | ( | int | argc, | |
| char ** | argv | |||
| ) |
Definition at line 19 of file enc_none.c.
References encmodule_check_password(), encmodule_decrypt(), encmodule_encrypt(), encmodule_encrypt_check_len(), encmodule_encrypt_in_place(), ENCRYPTION, MOD_CONT, moduleAddAuthor(), moduleAddVersion(), moduleSetType(), plain_check_password(), plain_decrypt(), plain_encrypt(), plain_encrypt_check_len(), and plain_encrypt_in_place().
| int plain_check_password | ( | const char * | plaintext, | |
| const char * | password | |||
| ) |
| int plain_decrypt | ( | const char * | src, | |
| char * | dest, | |||
| int | size | |||
| ) |
| int plain_encrypt | ( | const char * | src, | |
| int | len, | |||
| char * | dest, | |||
| int | size | |||
| ) |
| int plain_encrypt_check_len | ( | int | passlen, | |
| int | bufsize | |||
| ) |
| int plain_encrypt_in_place | ( | char * | buf, | |
| int | size | |||
| ) |
1.5.7.1