Variable: epg-config--configuration-constructor-alist
epg-config--configuration-constructor-alist is a variable defined in
epg-config.el.gz.
Value
((OpenPGP . epg-config--make-gpg-configuration)
(CMS . epg-config--make-gpgsm-configuration))
Documentation
Alist used to obtain the usable configuration of executables.
The first element of each entry is protocol symbol, which is
either OpenPGP or CMS. The second element is a function
which constructs a configuration object (actually a plist).
Source Code
;; Defined in /usr/src/emacs/lisp/epg-config.el.gz
(defconst epg-config--configuration-constructor-alist
'((OpenPGP . epg-config--make-gpg-configuration)
(CMS . epg-config--make-gpgsm-configuration))
"Alist used to obtain the usable configuration of executables.
The first element of each entry is protocol symbol, which is
either `OpenPGP' or `CMS'. The second element is a function
which constructs a configuration object (actually a plist).")