Function: epg-new-signature-pubkey-algorithm

epg-new-signature-pubkey-algorithm is a byte-compiled function defined in epg.el.gz.

Signature

(epg-new-signature-pubkey-algorithm epg-new-signature-pubkey-algorithm X)

Documentation

Access slot "pubkey-algorithm" 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))