aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-smime-context.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-11-10 20:46:07 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-11-10 20:46:07 +0800
commitbb90a934d50682e2ffc93d307664b20e6e54bee7 (patch)
treef4b5dd08ce90c3354a3a35892a71592173ba7535 /camel/camel-smime-context.h
parent55e9c607f0bac0a0333552885d97d45c5122bd59 (diff)
downloadgsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.tar
gsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.tar.gz
gsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.tar.bz2
gsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.tar.lz
gsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.tar.xz
gsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.tar.zst
gsoc2013-evolution-bb90a934d50682e2ffc93d307664b20e6e54bee7.zip
split out the CMSMessage verification code so it can be used from
2003-11-10 Not Zed <NotZed@Ximian.com> * camel-smime-context.c (sm_verify_cmsg): split out the CMSMessage verification code so it can be used from enveloped or externally signed data. * camel-cipher-context.c (camel_cipher_verify): only take a mimepart, internally handle multiparts and the hash. 2003-11-07 Not Zed <NotZed@Ximian.com> * camel-cipher-context.c: make ciphervalidity a public structure, added encrypt status. (camel_cipher_decrypt): changed to return a ciphervalidity. fixed implementations. (camel_cipher_validity_*): Fixed implementations to match new structure, some of this is now redundant. 2003-11-06 Not Zed <NotZed@Ximian.com> * camel-smime-context.c (camel_smime_context_describe_part): implement. svn path=/trunk/; revision=23242
Diffstat (limited to 'camel/camel-smime-context.h')
-rw-r--r--camel/camel-smime-context.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/camel-smime-context.h b/camel/camel-smime-context.h
index f0e8d45c3b..19f0e8464b 100644
--- a/camel/camel-smime-context.h
+++ b/camel/camel-smime-context.h
@@ -42,9 +42,10 @@ typedef enum _camel_smime_sign_t {
} camel_smime_sign_t;
typedef enum _camel_smime_describe_t {
- CAMEL_SMIME_SIGNED = 1,
- CAMEL_SMIME_ENCRYPTED = 2,
- CAMEL_SMIME_CERTS = 4,
+ CAMEL_SMIME_SIGNED = 1<<0,
+ CAMEL_SMIME_ENCRYPTED = 1<<1,
+ CAMEL_SMIME_CERTS = 1<<2,
+ CAMEL_SMIME_CRLS = 1<<3,
} camel_smime_describe_t;
typedef struct _CamelSMIMEContext CamelSMIMEContext;