From 138907962d8e70fc7ac0ed8c709dd310cb37550e Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Fri, 11 Sep 2009 22:27:32 +0000 Subject: [PATCH] Add algorithm names. (epg-cipher-algorithm-alist): Add CAMELLIA. (epg-digest-algorithm-alist): Add SHA224. --- lisp/ChangeLog | 5 +++++ lisp/epg.el | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f2792ed6f16..e7b4987b7eb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-09-11 Daiki Ueno + + * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA. + (epg-digest-algorithm-alist): Add SHA224. + 2009-09-11 Stefan Monnier * custom.el (custom-delayed-init-variables): New var. diff --git a/lisp/epg.el b/lisp/epg.el index 8481f65b833..f8d72f46cc0 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -49,6 +49,8 @@ (8 . "AES192") (9 . "AES256") (10 . "TWOFISH") + (11 . "CAMELLIA128") + (12 . "CAMELLIA256") (110 . "DUMMY"))) ;; from gnupg/include/cipher.h @@ -67,7 +69,8 @@ (3 . "RMD160") (8 . "SHA256") (9 . "SHA384") - (10 . "SHA512"))) + (10 . "SHA512") + (11 . "SHA224"))) ;; from gnupg/include/cipher.h (defconst epg-compress-algorithm-alist -- 2.11.4.GIT