Function: epg-make-context
epg-make-context is an autoloaded and byte-compiled function defined
in epg.el.gz.
Signature
(epg-make-context &optional PROTOCOL ARMOR TEXTMODE INCLUDE-CERTS CIPHER-ALGORITHM DIGEST-ALGORITHM COMPRESS-ALGORITHM)
Documentation
Return a context object.
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
;;;; Context Methods
;; This is not an alias, just so we can mark it as autoloaded.
;;;###autoload
(defun epg-make-context (&optional protocol armor textmode include-certs
cipher-algorithm digest-algorithm
compress-algorithm)
"Return a context object."
(epg-context--make (or protocol 'OpenPGP)
armor textmode include-certs
cipher-algorithm digest-algorithm
compress-algorithm))