Function: mml-secure-message-encrypt-pgp
mml-secure-message-encrypt-pgp is an interactive and byte-compiled
function defined in mml-sec.el.gz.
Signature
(mml-secure-message-encrypt-pgp &optional DONTSIGN)
Documentation
Add MML tag to encrypt and sign the entire message.
If called with a prefix argument, only encrypt (do NOT sign).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml-sec.el.gz
(defun mml-secure-message-encrypt-pgp (&optional dontsign)
"Add MML tag to encrypt and sign the entire message.
If called with a prefix argument, only encrypt (do NOT sign)."
(interactive "P" mml-mode)
(mml-secure-message "pgp" (if dontsign 'encrypt 'signencrypt)))