X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=util%2Fcrypto.h;h=1a90f0e00321fc73d1e93d8808ae602222b5048e;hb=9fbc5cb578c60762ab9c2a24a14d4d07de516790;hp=1ff0297db45077bdb491dfbf8d27775ae3c280bd;hpb=7ac96b149f5a0e5c03b64856d7c20789dab3c628;p=notmuch diff --git a/util/crypto.h b/util/crypto.h index 1ff0297d..1a90f0e0 100644 --- a/util/crypto.h +++ b/util/crypto.h @@ -2,14 +2,16 @@ #define _CRYPTO_H #include -#if (GMIME_MAJOR_VERSION < 3) #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; @@ -17,6 +19,14 @@ typedef struct _notmuch_crypto { #endif } _notmuch_crypto_t; +GMimeObject * +_notmuch_crypto_decrypt (bool *attempted, + notmuch_decryption_policy_t decrypt, + notmuch_message_t *message, + GMimeCryptoContext* crypto_ctx, + GMimeMultipartEncrypted *part, + GMimeDecryptResult **decrypt_result, + GError **err); #if (GMIME_MAJOR_VERSION < 3) notmuch_status_t @@ -28,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