Function: epg-new-signature-type
epg-new-signature-type is a byte-compiled function defined in
epg.el.gz.
Signature
(epg-new-signature-type epg-new-signature-type X)
Documentation
Access slot "type" of epg-new-signature struct X.
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
(cl-defstruct (epg-new-signature
(:constructor nil)
(:constructor epg-make-new-signature
(type pubkey-algorithm digest-algorithm
class creation-time fingerprint))
(:copier nil)
(:predicate nil))
(type nil :read-only t)
(pubkey-algorithm nil :read-only t)
(digest-algorithm nil :read-only t)
(class nil :read-only t)
(creation-time nil :read-only t)
(fingerprint nil :read-only t))