+2014-11-07 Daiki Ueno <ueno@gnu.org>
+
+ * epa.el (epa-pinentry-mode): New user option.
+ (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
+ (epa-sign-region, epa-encrypt-region): Respect epa-pinentry-mode.
+ * epa-file.el (epa-file-insert-file-contents)
+ (epa-file-write-region): Respect epa-pinentry-mode.
+
2014-11-07 Daiki Ueno <ueno@gnu.org>
* epg.el (epg--list-keys-1): Ignore fields after the 15th field
context
(cons #'epa-progress-callback-function
(format "Decrypting %s" file)))
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(unwind-protect
(progn
(if replace
(cons #'epa-progress-callback-function
(format "Encrypting %s" file)))
(setf (epg-context-armor context) epa-armor)
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(condition-case error
(setq string
(epg-encrypt-string
:type 'integer
:group 'epa)
+(defcustom epa-pinentry-mode nil
+ "The pinentry mode.
+
+GnuPG 2.1 or later has an option to control the behavior of
+Pinentry invocation. Possible modes are: `ask', `cancel',
+`error', and `loopback'. See the GnuPG manual for the meanings.
+
+In epa commands, a particularly useful mode is `loopback', which
+redirects all Pinentry queries to the caller, so Emacs can query
+passphrase through the minibuffer, instead of external Pinentry
+program."
+ :type '(choice (const nil)
+ (const ask)
+ (const cancel)
+ (const error)
+ (const loopback))
+ :group 'epa
+ :version "25.1")
+
(defgroup epa-faces nil
"Faces for epa-mode."
:version "23.1"
#'epa-progress-callback-function
(format "Signing %s..."
(file-name-nondirectory file))))
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(message "Signing %s..." (file-name-nondirectory file))
(condition-case error
(epg-sign-file context file signature mode)
#'epa-progress-callback-function
(format "Encrypting %s..."
(file-name-nondirectory file))))
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(message "Encrypting %s..." (file-name-nondirectory file))
(condition-case error
(epg-encrypt-file context file recipients cipher)
(cons
#'epa-progress-callback-function
"Decrypting..."))
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(message "Decrypting...")
(condition-case error
(setq plain (epg-decrypt-string context (buffer-substring start end)))
(cons
#'epa-progress-callback-function
"Signing..."))
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(message "Signing...")
(condition-case error
(setq signature (epg-sign-string context
(cons
#'epa-progress-callback-function
"Encrypting..."))
+ (if epa-pinentry-mode
+ (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
(message "Encrypting...")
(condition-case error
(setq cipher (epg-encrypt-string context
;; (cons
;; #'epa-progress-callback-function
;; "Signing keys..."))
+;; (if epa-pinentry-mode
+;; (setf (epg-context-pinentry-mode context) epa-pinentry-mode))
;; (message "Signing keys...")
;; (epg-sign-keys context keys local)
;; (message "Signing keys...done")))