Function: epg-make-key-signature

epg-make-key-signature is a byte-compiled function defined in epg.el.gz.

Signature

(epg-make-key-signature VALIDITY PUBKEY-ALGORITHM KEY-ID CREATION-TIME EXPIRATION-TIME USER-ID CLASS EXPORTABLE-P)

Documentation

Constructor for objects of type epg-key-signature.

Source Code

;; Defined in /usr/src/emacs/lisp/epg.el.gz
(cl-defstruct (epg-key-signature
               (:constructor nil)
               (:constructor epg-make-key-signature
                (validity pubkey-algorithm key-id creation-time
                          expiration-time user-id class
                          exportable-p))
               (:copier nil)
               (:predicate nil))
  validity pubkey-algorithm key-id creation-time
  expiration-time user-id class
  exportable-p)