aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-cipher-context.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-03-08 04:11:35 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-03-08 04:11:35 +0800
commit2d62db45411f0d7ffa18bf2d5ef904445844ae8c (patch)
treeb7ccb191b5fd82edc8caa9dc08448e7dce1749f4 /camel/camel-cipher-context.h
parent17fd352c3b2ccbc9dcfc9d199e7363fe40cd379f (diff)
downloadgsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.tar
gsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.tar.gz
gsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.tar.bz2
gsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.tar.lz
gsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.tar.xz
gsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.tar.zst
gsoc2013-evolution-2d62db45411f0d7ffa18bf2d5ef904445844ae8c.zip
Add support for hash type RIPEMD160.
2002-03-07 Jeffrey Stedfast <fejj@ximian.com> * camel-pgp-mime.c (camel_pgp_mime_part_sign): Add support for hash type RIPEMD160. * camel-cipher-context.h: Add RIPEMD160 hash type. * camel-pgp-context.c (pgp_sign): Updated to consider hash function for pgp5 and pgp6. (pgp_clearsign): Same. svn path=/trunk/; revision=15969
Diffstat (limited to 'camel/camel-cipher-context.h')
-rw-r--r--camel/camel-cipher-context.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-cipher-context.h b/camel/camel-cipher-context.h
index 80f07f2a43..5147cc5ebc 100644
--- a/camel/camel-cipher-context.h
+++ b/camel/camel-cipher-context.h
@@ -43,7 +43,8 @@ typedef enum {
CAMEL_CIPHER_HASH_DEFAULT,
CAMEL_CIPHER_HASH_MD2,
CAMEL_CIPHER_HASH_MD5,
- CAMEL_CIPHER_HASH_SHA1
+ CAMEL_CIPHER_HASH_SHA1,
+ CAMEL_CIPHER_HASH_RIPEMD160
} CamelCipherHash;
typedef struct _CamelCipherContext {