X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=util%2Fcrypto.h;h=af3998e8466e346bdcef95310031d88e68742c7a;hb=b7ac4c05e118047442378f58eeb69d43bd1cbdb1;hp=d68634f3322ca7b8d5cfab10c4707189fabb4bc4;hpb=5f2832ae2171714dfef6d0d3302f473526480157;p=notmuch diff --git a/util/crypto.h b/util/crypto.h index d68634f3..af3998e8 100644 --- a/util/crypto.h +++ b/util/crypto.h @@ -5,30 +5,27 @@ #include "gmime-extra.h" #include "notmuch.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef struct _notmuch_crypto { bool verify; - bool decrypt; -#if (GMIME_MAJOR_VERSION < 3) - GMimeCryptoContext* gpgctx; - GMimeCryptoContext* pkcs7ctx; - const char *gpgpath; -#endif + notmuch_decryption_policy_t decrypt; } _notmuch_crypto_t; GMimeObject * -_notmuch_crypto_decrypt (GMimeCryptoContext* crypto_ctx, +_notmuch_crypto_decrypt (bool *attempted, + notmuch_decryption_policy_t decrypt, + notmuch_message_t *message, GMimeMultipartEncrypted *part, GMimeDecryptResult **decrypt_result, GError **err); -#if (GMIME_MAJOR_VERSION < 3) -notmuch_status_t -_notmuch_crypto_get_gmime_ctx_for_protocol (_notmuch_crypto_t *crypto, - const char *protocol, - GMimeCryptoContext **ctx); -#endif - void _notmuch_crypto_cleanup (_notmuch_crypto_t *crypto); +#ifdef __cplusplus +} +#endif #endif