X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=util%2Fcrypto.h;h=1a90f0e00321fc73d1e93d8808ae602222b5048e;hb=d9800c893289b56dcc966241528643ae83f2ff9a;hp=0c62ac70d8f1cfde40634964654b2fb58c14e229;hpb=a99058540823cd520cf2a5333e8ffe99799aa285;p=notmuch diff --git a/util/crypto.h b/util/crypto.h index 0c62ac70..1a90f0e0 100644 --- a/util/crypto.h +++ b/util/crypto.h @@ -5,9 +5,13 @@ #include "gmime-extra.h" #include "notmuch.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef struct _notmuch_crypto { bool verify; - bool decrypt; + notmuch_decryption_policy_t decrypt; #if (GMIME_MAJOR_VERSION < 3) GMimeCryptoContext* gpgctx; GMimeCryptoContext* pkcs7ctx; @@ -16,7 +20,9 @@ typedef struct _notmuch_crypto { } _notmuch_crypto_t; GMimeObject * -_notmuch_crypto_decrypt (notmuch_message_t *message, +_notmuch_crypto_decrypt (bool *attempted, + notmuch_decryption_policy_t decrypt, + notmuch_message_t *message, GMimeCryptoContext* crypto_ctx, GMimeMultipartEncrypted *part, GMimeDecryptResult **decrypt_result, @@ -32,4 +38,7 @@ _notmuch_crypto_get_gmime_ctx_for_protocol (_notmuch_crypto_t *crypto, void _notmuch_crypto_cleanup (_notmuch_crypto_t *crypto); +#ifdef __cplusplus +} +#endif #endif