summaryrefslogtreecommitdiffstats
path: root/crypt-mod.h
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2015-03-30 15:45:49 -0700
committerKevin McCarthy <kevin@8t8.us>2015-03-30 15:45:49 -0700
commit4615a829c7dd4a2ba64683bae4c058b098f5d30a (patch)
tree710e198c202406f52333b0bc78d537be16924670 /crypt-mod.h
parentecbba07c51d92c7af5b97ff49b50267ef00074d6 (diff)
Introduce an oppenc_mode parameter
It's added to the parameter lists through the call stack down to the find_keys calls. No functionality is implemented yet. This patch is separated just to keep other patches more readable.
Diffstat (limited to 'crypt-mod.h')
-rw-r--r--crypt-mod.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypt-mod.h b/crypt-mod.h
index 2489a613..70910eee 100644
--- a/crypt-mod.h
+++ b/crypt-mod.h
@@ -43,7 +43,7 @@ typedef int (*crypt_func_pgp_check_traditional_t) (FILE *fp, BODY *b,
typedef BODY *(*crypt_func_pgp_traditional_encryptsign_t) (BODY *a, int flags,
char *keylist);
typedef BODY *(*crypt_func_pgp_make_key_attachment_t) (char *tempf);
-typedef char *(*crypt_func_findkeys_t) (ADDRESS *adrlist);
+typedef char *(*crypt_func_findkeys_t) (ADDRESS *adrlist, int oppenc_mode);
typedef BODY *(*crypt_func_sign_message_t) (BODY *a);
typedef BODY *(*crypt_func_pgp_encrypt_message_t) (BODY *a, char *keylist,
int sign);