]> git.eshelyaron.com Git - emacs.git/commitdiff
Add algorithm names.
authorDaiki Ueno <ueno@unixuser.org>
Fri, 11 Sep 2009 22:27:32 +0000 (22:27 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Fri, 11 Sep 2009 22:27:32 +0000 (22:27 +0000)
(epg-cipher-algorithm-alist): Add CAMELLIA.
(epg-digest-algorithm-alist): Add SHA224.

lisp/ChangeLog
lisp/epg.el

index f2792ed6f1635af0457eb13d81969b0597687060..e7b4987b7eb903671e6710bb38ea222daea0bdab 100644 (file)
@@ -1,3 +1,8 @@
+2009-09-11  Daiki Ueno  <ueno@unixuser.org>
+
+       * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
+       (epg-digest-algorithm-alist): Add SHA224.
+
 2009-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * custom.el (custom-delayed-init-variables): New var.
index 8481f65b8332587df170bde7b15bcaaa45c9a71c..f8d72f46cc07fff2f258c372432677ea5b48e3f6 100644 (file)
@@ -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