Variable: pgg-parse-public-key-algorithm-alist

pgg-parse-public-key-algorithm-alist is a customizable variable defined in pgg-parse.el.gz.

Value

((1 . RSA)
 (2 . RSA-E)
 (3 . RSA-S)
 (16 . ELG-E)
 (17 . DSA)
 (20 . ELG))

Documentation

Alist of the assigned number to the public key algorithm.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/pgg-parse.el.gz
(defcustom pgg-parse-public-key-algorithm-alist
  '((1 . RSA) (2 . RSA-E) (3 . RSA-S) (16 . ELG-E) (17 . DSA) (20 . ELG))
  "Alist of the assigned number to the public key algorithm."
  :type '(repeat
	  (cons (sexp :tag "Number") (sexp :tag "Type"))))