X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-crypt%2Fcrypt-mod.h;fp=lib-crypt%2Fcrypt-mod.h;h=6e6a1c313a00a4740d1e4565850d925a7ee9c189;hp=c74081ea9de877c1af976399a0c6f6d023232957;hb=82589516e2473b5451218d7b00a9dfbc3e18f3ca;hpb=75147b39ee208b0e6257bc483d96b20b1f5a7995 diff --git a/lib-crypt/crypt-mod.h b/lib-crypt/crypt-mod.h index c74081e..6e6a1c3 100644 --- a/lib-crypt/crypt-mod.h +++ b/lib-crypt/crypt-mod.h @@ -13,12 +13,7 @@ #include #include "crypt.h" -/* - Type defintions for crypto module functions. - */ -typedef void (*crypt_func_void_passphrase_t) (void); -typedef int (*crypt_func_valid_passphrase_t) (void); - +/* Type defintions for crypto module functions. */ typedef int (*crypt_func_decrypt_mime_t) (FILE * a, FILE ** b, BODY * c, BODY ** d); @@ -64,8 +59,6 @@ typedef void (*crypt_func_init_t) (void); typedef struct crypt_module_functions { /* Common/General functions. */ crypt_func_init_t init; - crypt_func_void_passphrase_t void_passphrase; - crypt_func_valid_passphrase_t valid_passphrase; crypt_func_decrypt_mime_t decrypt_mime; crypt_func_application_handler_t application_handler; crypt_func_encrypted_handler_t encrypted_handler;