Variable: pgg-parse-signature-type-alist
pgg-parse-signature-type-alist is a customizable variable defined in
pgg-parse.el.gz.
Value
((0 . "Signature of a binary document")
(1 . "Signature of a canonical text document")
(2 . "Standalone signature")
(16 . "Generic certification of a User ID and Public Key packet")
(17 . "Persona certification of a User ID and Public Key packet")
(18 . "Casual certification of a User ID and Public Key packet")
(19 . "Positive certification of a User ID and Public Key packet")
(24 . "Subkey Binding Signature")
(31 . "Signature directly on a key")
(32 . "Key revocation signature")
(40 . "Subkey revocation signature")
(48 . "Certification revocation signature")
(64 . "Timestamp signature."))
Documentation
Alist of the assigned number to the signature type.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/pgg-parse.el.gz
(defcustom pgg-parse-signature-type-alist
'((0 . "Signature of a binary document")
(1 . "Signature of a canonical text document")
(2 . "Standalone signature")
(16 . "Generic certification of a User ID and Public Key packet")
(17 . "Persona certification of a User ID and Public Key packet")
(18 . "Casual certification of a User ID and Public Key packet")
(19 . "Positive certification of a User ID and Public Key packet")
(24 . "Subkey Binding Signature")
(31 . "Signature directly on a key")
(32 . "Key revocation signature")
(40 . "Subkey revocation signature")
(48 . "Certification revocation signature")
(64 . "Timestamp signature."))
"Alist of the assigned number to the signature type."
:type '(repeat
(cons (sexp :tag "Number") (sexp :tag "Type"))))