summaryrefslogtreecommitdiffstats
path: root/crypt-mod.h
diff options
context:
space:
mode:
authorMoritz Schulte <Moritz.Schulte@ruhr-uni-bochum.de>2007-02-24 06:12:19 +0000
committerMoritz Schulte <Moritz.Schulte@ruhr-uni-bochum.de>2007-02-24 06:12:19 +0000
commitfce975f5786772eaf73aab7478a503060ee504c7 (patch)
treecab6fe94a3c06d317598338bd9cb0101e7148de9 /crypt-mod.h
parent6c4a226429b13f46f3ddd00a76aed0b82534b60f (diff)
PKA signature verification via GPGME, controlled by $crypt_use_pka.
Diffstat (limited to 'crypt-mod.h')
-rw-r--r--crypt-mod.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypt-mod.h b/crypt-mod.h
index 3bd74260..08dfa43c 100644
--- a/crypt-mod.h
+++ b/crypt-mod.h
@@ -67,6 +67,7 @@ typedef void (*crypt_func_smime_invoke_import_t) (char *infile, char *mailbox);
typedef void (*crypt_func_init_t) (void);
+typedef void (*crypt_func_set_sender_t) (const char *sender);
/*
A structure to keep all crypto module fucntions together.
@@ -84,6 +85,7 @@ typedef struct crypt_module_functions
crypt_func_sign_message_t sign_message;
crypt_func_verify_one_t verify_one;
crypt_func_send_menu_t send_menu;
+ crypt_func_set_sender_t set_sender;
/* PGP specific functions. */
crypt_func_pgp_encrypt_message_t pgp_encrypt_message;