emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog epg.el


From: Daiki Ueno
Subject: [Emacs-diffs] emacs/lisp ChangeLog epg.el
Date: Fri, 11 Sep 2009 22:27:37 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Daiki Ueno <ueno>       09/09/11 22:27:36

Modified files:
        lisp           : ChangeLog epg.el 

Log message:
        Add algorithm names.
        
        (epg-cipher-algorithm-alist): Add CAMELLIA.
        (epg-digest-algorithm-alist): Add SHA224.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16134&r2=1.16135
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/epg.el?cvsroot=emacs&r1=1.13&r2=1.14

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16134
retrieving revision 1.16135
diff -u -b -r1.16134 -r1.16135
--- ChangeLog   11 Sep 2009 21:25:44 -0000      1.16134
+++ ChangeLog   11 Sep 2009 22:27:32 -0000      1.16135
@@ -1,3 +1,8 @@
+2009-09-11  Daiki Ueno  <address@hidden>
+
+       * epg.el (epg-cipher-algorithm-alist): Add CAMELLIA.
+       (epg-digest-algorithm-alist): Add SHA224.
+
 2009-09-11  Stefan Monnier  <address@hidden>
 
        * custom.el (custom-delayed-init-variables): New var.

Index: epg.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/epg.el,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- epg.el      21 Aug 2009 14:59:53 -0000      1.13
+++ epg.el      11 Sep 2009 22:27:36 -0000      1.14
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]