]> git.eshelyaron.com Git - emacs.git/commitdiff
Trivial fixes for epg.el.
authorDaiki Ueno <ueno@unixuser.org>
Fri, 3 Dec 2010 01:52:43 +0000 (10:52 +0900)
committerDaiki Ueno <ueno@unixuser.org>
Fri, 3 Dec 2010 01:52:43 +0000 (10:52 +0900)
* epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
"RIPEMD160" (Bug#7490).  Reported by Daniel Kahn Gillmor.
(epg-context-set-passphrase-callback): Mention that the callback
is not called when used with GnuPG 2.x.

lisp/ChangeLog
lisp/epg.el

index 97bf1606ac7af4237bc140c8ffa603c60d8c4ef2..086c6a341228bff39d37791eff679c01b6842897 100644 (file)
@@ -1,3 +1,10 @@
+2010-12-03  Daiki Ueno  <ueno@unixuser.org>
+
+       * epg.el (epg-digest-algorithm-alist): Replace "RMD160" with
+       "RIPEMD160" (Bug#7490).  Reported by Daniel Kahn Gillmor.
+       (epg-context-set-passphrase-callback): Mention that the callback
+       is not called when used with GnuPG 2.x.
+
 2010-12-02  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-local-host-regexp): Add "localhost6".
index fae896c4ae0ddea22fd5d9877c57a635edd68da3..a1541361b4b3d1b5a7ce222c9ba8779437143c7b 100644 (file)
@@ -67,7 +67,7 @@
 (defconst epg-digest-algorithm-alist
   '((1 . "MD5")
     (2 . "SHA1")
-    (3 . "RMD160")
+    (3 . "RIPEMD160")
     (8 . "SHA256")
     (9 . "SHA384")
     (10 . "SHA512")
@@ -337,7 +337,13 @@ PASSPHRASE-CALLBACK is either a function, or a cons-cell whose
 car is a function and cdr is a callback data.
 
 The function gets three arguments: the context, the key-id in
-question, and the callback data (if any)."
+question, and the callback data (if any).
+
+The callback may not be called if you use GnuPG 2.x, which relies
+on the external program called `gpg-agent' for passphrase query.
+If you really want to intercept passphrase query, consider
+installing GnuPG 1.x _along with_ GnuPG 2.x, which does passphrase
+query by itself and Emacs can intercept them."
   (unless (eq (car-safe context) 'epg-context)
     (signal 'wrong-type-argument (list 'epg-context-p context)))
   (aset (cdr context) 7 (if (consp passphrase-callback)