X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=util%2Fcrypto.h;h=c384601c11d35772a727c55996f4c3180076481e;hp=80628dc528d258057561a37168d116437fa2d75c;hb=9e158fb6942cd74a9babc43e3c8e7bfc9125212a;hpb=197d67959bf459fc0f1f63a202d162a569535bf3 diff --git a/util/crypto.h b/util/crypto.h index 80628dc5..c384601c 100644 --- a/util/crypto.h +++ b/util/crypto.h @@ -2,13 +2,12 @@ #define _CRYPTO_H #include -#if (GMIME_MAJOR_VERSION < 3) #include "gmime-extra.h" -#endif +#include "notmuch.h" typedef struct _notmuch_crypto { bool verify; - bool decrypt; + notmuch_decryption_policy_t decrypt; #if (GMIME_MAJOR_VERSION < 3) GMimeCryptoContext* gpgctx; GMimeCryptoContext* pkcs7ctx; @@ -16,10 +15,20 @@ 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) -GMimeCryptoContext * -_notmuch_crypto_get_gmime_context (_notmuch_crypto_t *crypto, const char *protocol); +notmuch_status_t +_notmuch_crypto_get_gmime_ctx_for_protocol (_notmuch_crypto_t *crypto, + const char *protocol, + GMimeCryptoContext **ctx); #endif void