Function: epa-file-select-keys

epa-file-select-keys is an interactive and byte-compiled function defined in epa-file.el.gz.

Signature

(epa-file-select-keys)

Documentation

Select recipients for encryption.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/epa-file.el.gz
;;; Commands

(defun epa-file-select-keys ()
  "Select recipients for encryption."
  (interactive)
  (setq-local epa-file-encrypt-to
              (mapcar
               (lambda (key)
                 (epg-sub-key-id (car (epg-key-sub-key-list key))))
               (epa-select-keys
                (epg-make-context)
                "Select recipients for encryption.
If no one is selected, symmetric encryption will be performed.  "))))