Function: epg-make-sub-key

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

Signature

(epg-make-sub-key VALIDITY CAPABILITY SECRET-P ALGORITHM LENGTH ID CREATION-TIME EXPIRATION-TIME)

Documentation

Constructor for objects of type epg-sub-key.

Source Code

;; Defined in /usr/src/emacs/lisp/epg.el.gz
(cl-defstruct (epg-sub-key
               (:constructor nil)
               (:constructor epg-make-sub-key
                (validity capability secret-p algorithm length id
                          creation-time expiration-time))
               (:copier nil)
               (:predicate nil))
  validity capability secret-p algorithm length id
  creation-time expiration-time fingerprint)