Function: epa-list-secret-keys

epa-list-secret-keys is an autoloaded, interactive and byte-compiled function defined in epa.el.gz.

Signature

(epa-list-secret-keys &optional NAME)

Documentation

List all keys matched with NAME from the private keyring.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/epa.el.gz
;;;###autoload
(defun epa-list-secret-keys (&optional name)
  "List all keys matched with NAME from the private keyring."
  (interactive
   (if current-prefix-arg
       (let ((name (read-string "Pattern: "
				(if epa-list-keys-arguments
				    (car epa-list-keys-arguments)))))
	 (list (if (equal name "") nil name)))
     (list nil)))
  (epa--list-keys name t))