Variable: epg-config--program-alist

epg-config--program-alist is a variable defined in epg-config.el.gz.

Value

((OpenPGP epg-gpg-program ("gpg2" . "2.1.6")
	  ("gpg" ("1.4.3" . "2.0") "2.1.6"))
 (CMS epg-gpgsm-program ("gpgsm" . "2.0.4")))

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 symbol where the executable name is remembered. The rest of the entry is an alist mapping executable names to the minimum required version suitable for the use with Emacs.

Source Code

;; Defined in /usr/src/emacs/lisp/epg-config.el.gz
(defconst epg-config--program-alist
  `((OpenPGP
     epg-gpg-program
     ("gpg2" . ,epg-gpg2-minimum-version)
     ("gpg" . ((,epg-gpg-minimum-version . "2.0")
               ,epg-gpg2-minimum-version)))
    (CMS
     epg-gpgsm-program
     ("gpgsm" . "2.0.4")))
  "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 symbol where
the executable name is remembered.  The rest of the entry is an
alist mapping executable names to the minimum required version
suitable for the use with Emacs.")