Function: mh-mml-query-cryptographic-method

mh-mml-query-cryptographic-method is a byte-compiled function defined in mh-mime.el.gz.

Signature

(mh-mml-query-cryptographic-method)

Documentation

Read the cryptographic method to use.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
(defun mh-mml-query-cryptographic-method ()
  "Read the cryptographic method to use."
  (if current-prefix-arg
      (let ((def (or (car mh-mml-cryptographic-method-history)
                     mh-mml-method-default)))
        (completing-read (format-prompt "Method" def)
                         '(("pgp") ("pgpmime") ("smime"))
                         nil t nil 'mh-mml-cryptographic-method-history def))
    mh-mml-method-default))