Function: epa-mail-decrypt
epa-mail-decrypt is an autoloaded, interactive and byte-compiled
function defined in epa-mail.el.gz.
Signature
(epa-mail-decrypt)
Documentation
Decrypt OpenPGP armors in the current buffer.
The buffer is expected to contain a mail message.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/epa-mail.el.gz
;;; Commands
;;;###autoload
(defun epa-mail-decrypt ()
"Decrypt OpenPGP armors in the current buffer.
The buffer is expected to contain a mail message."
(declare (interactive-only t))
(interactive)
(with-suppressed-warnings ((interactive-only epa-decrypt-armor-in-region))
(epa-decrypt-armor-in-region (point-min) (point-max))))