mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-21 06:55:39 +00:00
d85461ac61
* doc/misc/epa.texi (Cryptographic operations on regions): Fix wording of the 'epa-keys-select-method's documentation. * lisp/epa.el (epa-keys-select-method): Doc fix (bug#69133).
1298 lines
43 KiB
EmacsLisp
1298 lines
43 KiB
EmacsLisp
;;; epa.el --- the EasyPG Assistant -*- lexical-binding: t -*-
|
|
|
|
;; Copyright (C) 2006-2024 Free Software Foundation, Inc.
|
|
|
|
;; Author: Daiki Ueno <ueno@unixuser.org>
|
|
;; Keywords: PGP, GnuPG
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
;; (at your option) any later version.
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(require 'epg)
|
|
(eval-when-compile (require 'subr-x))
|
|
(require 'derived)
|
|
|
|
;;; Options
|
|
|
|
(defgroup epa nil
|
|
"The EasyPG Assistant."
|
|
:version "23.1"
|
|
:link '(custom-manual "(epa) Top")
|
|
:group 'epg)
|
|
|
|
(defcustom epa-replace-original-text 'ask
|
|
"Whether the original text shall be replaced by the decrypted.
|
|
|
|
If t, replace the original text without any confirmation.
|
|
If nil, don't replace the original text and show the result in a new buffer.
|
|
If neither t nor nil, ask user for confirmation."
|
|
:version "26.1"
|
|
:type '(choice (const :tag "Never" nil)
|
|
(const :tag "Ask the user" ask)
|
|
(const :tag "Always" t))
|
|
:group 'epa)
|
|
|
|
(defcustom epa-popup-info-window t
|
|
"If non-nil, display status information from epa commands in another window."
|
|
:type 'boolean
|
|
:group 'epa)
|
|
|
|
(defcustom epa-info-window-height 5
|
|
"Number of lines used to display status information."
|
|
:type 'integer
|
|
:group 'epa)
|
|
|
|
(defcustom epa-mail-aliases nil
|
|
"Alist of aliases of email addresses that stand for encryption keys.
|
|
Each element is a list of email addresses (ALIAS EXPANSIONS...).
|
|
When one of the recipients of a message being encrypted is ALIAS,
|
|
instead of encrypting it for ALIAS, encrypt it for EXPANSIONS...
|
|
|
|
If EXPANSIONS is empty, ignore ALIAS as regards encryption.
|
|
This is a handy way to avoid warnings about addresses that you don't
|
|
have any key for.
|
|
|
|
The command `epa-mail-encrypt' uses this."
|
|
:type '(repeat (cons (string :tag "Alias") (repeat (string :tag "Expansion"))))
|
|
:group 'epa
|
|
:version "24.4")
|
|
|
|
(defcustom epa-keys-select-method 'buffer
|
|
"Method used to select keys in `epa-select-keys'.
|
|
If the value is \\='buffer, the default, keys are selected via a
|
|
pop-up buffer. If the value is \\='minibuffer, keys are selected
|
|
via the minibuffer instead, using `completing-read-multiple'.
|
|
Any other value is treated as \\='buffer."
|
|
:type '(choice (const :tag "Read keys from a pop-up buffer" buffer)
|
|
(const :tag "Read keys from minibuffer" minibuffer))
|
|
:group 'epa
|
|
:version "30.1")
|
|
|
|
;;; Faces
|
|
|
|
(defgroup epa-faces nil
|
|
"Faces for epa-mode."
|
|
:version "23.1"
|
|
:group 'epa)
|
|
|
|
(defface epa-validity-high
|
|
'((default :weight bold)
|
|
(((class color) (background dark)) :foreground "PaleTurquoise"))
|
|
"Face for high validity EPA information."
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-validity-medium
|
|
'((default :slant italic)
|
|
(((class color) (background dark)) :foreground "PaleTurquoise"))
|
|
"Face for medium validity EPA information."
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-validity-low
|
|
'((t :slant italic))
|
|
"Face used for displaying the low validity."
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-validity-disabled
|
|
'((t :slant italic :inverse-video t))
|
|
"Face used for displaying the disabled validity."
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-string
|
|
'((((class color) (background dark))
|
|
:foreground "lightyellow")
|
|
(((class color) (background light))
|
|
:foreground "blue4"))
|
|
"Face used for displaying the string."
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-mark
|
|
'((default :weight bold)
|
|
(((class color) (background dark)) :foreground "orange")
|
|
(((class color) (background light)) :foreground "red"))
|
|
"Face used for displaying the high validity."
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-field-name
|
|
'((default :weight bold)
|
|
(((class color) (background dark)) :foreground "PaleTurquoise"))
|
|
"Face for the name of the attribute field."
|
|
:version "28.1"
|
|
:group 'epa-faces)
|
|
|
|
(defface epa-field-body
|
|
'((default :slant italic)
|
|
(((class color) (background dark)) :foreground "turquoise"))
|
|
"Face for the body of the attribute field."
|
|
:version "28.1"
|
|
:group 'epa-faces)
|
|
|
|
(defcustom epa-validity-face-alist
|
|
'((unknown . epa-validity-disabled)
|
|
(invalid . epa-validity-disabled)
|
|
(disabled . epa-validity-disabled)
|
|
(revoked . epa-validity-disabled)
|
|
(expired . epa-validity-disabled)
|
|
(none . epa-validity-low)
|
|
(undefined . epa-validity-low)
|
|
(never . epa-validity-low)
|
|
(marginal . epa-validity-medium)
|
|
(full . epa-validity-high)
|
|
(ultimate . epa-validity-high))
|
|
"An alist mapping validity values to faces."
|
|
:version "28.1"
|
|
:type '(repeat (cons symbol face))
|
|
:group 'epa-faces)
|
|
|
|
;;; Variables
|
|
|
|
(defconst epa-pubkey-algorithm-letter-alist
|
|
'((1 . ?R)
|
|
(2 . ?r)
|
|
(3 . ?s)
|
|
(16 . ?g)
|
|
(17 . ?D)
|
|
(20 . ?G)))
|
|
|
|
(defvar epa-protocol 'OpenPGP
|
|
"The default protocol.
|
|
The value can be either OpenPGP or CMS.
|
|
|
|
You should bind this variable with `let', but do not set it globally.")
|
|
|
|
(defvar epa-armor nil
|
|
"If non-nil, epa commands create ASCII armored output.
|
|
|
|
You should bind this variable with `let', but do not set it globally.")
|
|
|
|
(defvar epa-textmode nil
|
|
"If non-nil, epa commands treat input files as text.
|
|
|
|
You should bind this variable with `let', but do not set it globally.")
|
|
|
|
(defvar epa-keys-buffer nil)
|
|
(defvar epa-key-buffer-alist nil)
|
|
(defvar epa-key nil)
|
|
(defvar epa-list-keys-arguments nil)
|
|
(defvar epa-info-buffer nil)
|
|
(defvar epa-error-buffer nil)
|
|
(defvar epa-suppress-error-buffer nil)
|
|
(defvar epa-last-coding-system-specified nil)
|
|
|
|
(defvar-keymap epa-key-list-mode-map
|
|
"RET" #'epa-show-key
|
|
"TAB" #'forward-button
|
|
"<backtab>" #'backward-button
|
|
"m" #'epa-mark-key
|
|
"u" #'epa-unmark-key
|
|
"d" #'epa-decrypt-file
|
|
"v" #'epa-verify-file
|
|
"s" #'epa-sign-file
|
|
"e" #'epa-encrypt-file
|
|
"r" #'epa-delete-keys
|
|
"i" #'epa-import-keys
|
|
"o" #'epa-export-keys
|
|
"g" #'revert-buffer
|
|
"n" #'next-line
|
|
"p" #'previous-line
|
|
"SPC" #'scroll-up-command
|
|
"S-SPC" #'scroll-down-command
|
|
"<delete>" #'scroll-down-command
|
|
"q" #'epa-exit-buffer)
|
|
|
|
(easy-menu-define epa-key-list-mode-menu epa-key-list-mode-map
|
|
"Menu for `epa-key-list-mode'."
|
|
'("Keys"
|
|
["Export Keys" epa-export-keys
|
|
:help "Export marked keys to a file"]
|
|
["Import Keys" epa-import-keys
|
|
:help "Import keys from a file"]
|
|
["Delete Keys" epa-delete-keys
|
|
:help "Delete Marked Keys"]
|
|
"---"
|
|
["Encrypt File..." epa-encrypt-file
|
|
:help "Encrypt file for recipients"]
|
|
["Decrypt File..." epa-decrypt-file
|
|
:help "Decrypt file"]
|
|
["Sign File..." epa-sign-file
|
|
:help "Sign file by signers keys selected"]
|
|
["Verify File..." epa-verify-file
|
|
:help "Verify file"]
|
|
"---"
|
|
["Mark Key" epa-mark-key
|
|
:help "Mark a key"]
|
|
["Unmark Key" epa-unmark-key
|
|
:help "Unmark a key"]))
|
|
|
|
(defvar-keymap epa-key-mode-map
|
|
"q" #'epa-exit-buffer)
|
|
|
|
(defvar epa-exit-buffer-function #'quit-window)
|
|
|
|
(defun epa--button-key-text (key)
|
|
(let ((primary-sub-key (car (epg-key-sub-key-list key)))
|
|
(primary-user-id (car (epg-key-user-id-list key)))
|
|
(validity (epg-sub-key-validity (car (epg-key-sub-key-list key)))))
|
|
(propertize
|
|
(concat
|
|
(propertize
|
|
(format "%c "
|
|
(if (epg-sub-key-validity primary-sub-key)
|
|
(car (rassq (epg-sub-key-validity primary-sub-key)
|
|
epg-key-validity-alist))
|
|
? ))
|
|
'help-echo (format "Validity: %s"
|
|
(epg-sub-key-validity primary-sub-key)))
|
|
(propertize
|
|
(concat
|
|
(epg-sub-key-id primary-sub-key)
|
|
" "
|
|
(if primary-user-id
|
|
(if (stringp (epg-user-id-string primary-user-id))
|
|
(epg-user-id-string primary-user-id)
|
|
(epg-decode-dn (epg-user-id-string primary-user-id)))
|
|
""))
|
|
'help-echo (format "Show %s"
|
|
(epg-sub-key-id (car (epg-key-sub-key-list key))))))
|
|
'face
|
|
(if validity
|
|
(cdr (assq validity epa-validity-face-alist))
|
|
'default))))
|
|
|
|
;;; Modes
|
|
|
|
(define-derived-mode epa-key-list-mode special-mode "EPA Keys"
|
|
"Major mode for `epa-list-keys'."
|
|
(buffer-disable-undo)
|
|
(setq truncate-lines t
|
|
buffer-read-only t)
|
|
(make-local-variable 'epa-exit-buffer-function)
|
|
(setq-local revert-buffer-function #'epa--key-list-revert-buffer))
|
|
|
|
(define-derived-mode epa-key-mode special-mode "EPA Key"
|
|
"Major mode for a key description."
|
|
(buffer-disable-undo)
|
|
(setq truncate-lines t
|
|
buffer-read-only t)
|
|
(make-local-variable 'epa-exit-buffer-function))
|
|
|
|
(define-derived-mode epa-info-mode special-mode "EPA Info"
|
|
"Major mode for `epa-info-buffer'."
|
|
(buffer-disable-undo)
|
|
(setq truncate-lines t
|
|
buffer-read-only t))
|
|
|
|
;;; Commands
|
|
;;;; Marking
|
|
|
|
(defun epa-mark-key (&optional arg)
|
|
"Mark a key on the current line.
|
|
If ARG is non-nil, unmark the key."
|
|
(interactive "P")
|
|
(let ((inhibit-read-only t)
|
|
buffer-read-only
|
|
properties)
|
|
(beginning-of-line)
|
|
(unless (get-text-property (point) 'epa-key)
|
|
(error "No key on this line"))
|
|
(setq properties (text-properties-at (point)))
|
|
(delete-char 1)
|
|
(insert (if arg " " "*"))
|
|
(set-text-properties (1- (point)) (point) properties)
|
|
(forward-line)))
|
|
|
|
(defun epa-unmark-key (&optional arg)
|
|
"Unmark a key on the current line.
|
|
If ARG is non-nil, mark the key."
|
|
(interactive "P")
|
|
(epa-mark-key (not arg)))
|
|
|
|
;;;; Quitting
|
|
|
|
(defun epa-exit-buffer ()
|
|
"Exit the current buffer using `epa-exit-buffer-function'."
|
|
(interactive)
|
|
(funcall epa-exit-buffer-function))
|
|
|
|
;;;; Listing and Selecting
|
|
|
|
(defun epa--insert-keys (keys)
|
|
(dolist (key keys)
|
|
(insert
|
|
(propertize
|
|
(concat " " (epa--button-key-text key))
|
|
'epa-key key
|
|
;; Allow TAB to tab to the key.
|
|
'button t
|
|
'category t))
|
|
(insert "\n")))
|
|
|
|
(defun epa--list-keys (name secret &optional doc)
|
|
"NAME specifies which key to list.
|
|
SECRET says list data on the secret key (default, the public key).
|
|
DOC is documentation text to insert at the start."
|
|
(unless (and epa-keys-buffer
|
|
(buffer-live-p epa-keys-buffer))
|
|
(setq epa-keys-buffer (generate-new-buffer "*Keys*")))
|
|
(set-buffer epa-keys-buffer)
|
|
(epa-key-list-mode)
|
|
(let ((inhibit-read-only t)
|
|
buffer-read-only
|
|
(point (point-min))
|
|
(context (epg-make-context epa-protocol)))
|
|
|
|
;; Find the end of the documentation text at the start.
|
|
;; Set POINT to where it ends, or nil if ends at eob.
|
|
(unless (get-text-property point 'epa-key)
|
|
(setq point (next-single-property-change point 'epa-key)))
|
|
|
|
;; If caller specified documentation text for that, replace the old
|
|
;; documentation text (if any) with what was specified.
|
|
;; Otherwise, preserve whatever intro text is present.
|
|
(when doc
|
|
(if (or point (not (eobp)))
|
|
(delete-region (point-min) point))
|
|
(insert doc)
|
|
(setq point (point)))
|
|
|
|
;; Now delete the key description text, if any.
|
|
(when point
|
|
(delete-region point
|
|
(or (next-single-property-change point 'epa-list-keys)
|
|
(point-max)))
|
|
(goto-char point))
|
|
|
|
(epa--insert-keys (epg-list-keys context name secret)))
|
|
(setq-local epa-list-keys-arguments (list name secret))
|
|
(goto-char (point-min))
|
|
(pop-to-buffer (current-buffer)))
|
|
|
|
;;;###autoload
|
|
(defun epa-list-keys (&optional name)
|
|
"List all keys matched with NAME from the public 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 nil
|
|
"The letters at the start of a line have these meanings.
|
|
e expired key. n never trust. m trust marginally. u trust ultimately.
|
|
f trust fully (keys you have signed, usually). r revoked key.
|
|
q trust status questionable. - trust status unspecified.
|
|
See GPG documentation for more explanation.
|
|
\n"))
|
|
|
|
;;;###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))
|
|
|
|
(defun epa--key-list-revert-buffer (&optional _ignore-auto _noconfirm)
|
|
(apply #'epa--list-keys epa-list-keys-arguments))
|
|
|
|
(defun epa--marked-keys ()
|
|
(or (with-current-buffer epa-keys-buffer
|
|
(goto-char (point-min))
|
|
(let (keys key)
|
|
(while (re-search-forward "^\\*" nil t)
|
|
(if (setq key (get-text-property (match-beginning 0)
|
|
'epa-key))
|
|
(setq keys (cons key keys))))
|
|
(nreverse keys)))
|
|
(let ((key (get-text-property (line-beginning-position) 'epa-key)))
|
|
(if key
|
|
(list key)))))
|
|
|
|
(defun epa--select-keys (prompt keys)
|
|
(unless (and epa-keys-buffer
|
|
(buffer-live-p epa-keys-buffer))
|
|
(setq epa-keys-buffer (generate-new-buffer "*Keys*")))
|
|
(save-window-excursion
|
|
(with-current-buffer epa-keys-buffer
|
|
(epa-key-list-mode)
|
|
;; C-c C-c is the usual way to finish the selection (bug#11159).
|
|
(define-key (current-local-map) "\C-c\C-c" 'exit-recursive-edit)
|
|
(let ((inhibit-read-only t)
|
|
buffer-read-only)
|
|
(erase-buffer)
|
|
(insert prompt "\n"
|
|
(substitute-command-keys "\
|
|
- `\\[epa-mark-key]' to mark a key on the line
|
|
- `\\[epa-unmark-key]' to unmark a key on the line\n"))
|
|
(insert-button "[Cancel]"
|
|
'action (lambda (_button) (abort-recursive-edit)))
|
|
(insert " ")
|
|
(insert-button "[OK]"
|
|
'action (lambda (_button) (exit-recursive-edit)))
|
|
(insert "\n\n")
|
|
(epa--insert-keys keys)
|
|
(setq epa-exit-buffer-function #'abort-recursive-edit)
|
|
(goto-char (point-min))
|
|
(let ((display-buffer-mark-dedicated 'soft))
|
|
(pop-to-buffer (current-buffer))))
|
|
(unwind-protect
|
|
(progn
|
|
(recursive-edit)
|
|
(epa--marked-keys))
|
|
(kill-buffer epa-keys-buffer)))))
|
|
|
|
(defun epa--select-keys-in-minibuffer (prompt keys)
|
|
(let* ((prompt (pcase-let ((`(,first ,second ,third)
|
|
(string-split prompt "\\."))
|
|
(hint "(separated by comma)"))
|
|
(if third
|
|
(format "%s %s. %s: " first hint second)
|
|
(format "%s %s: " first hint))))
|
|
(keys-alist
|
|
(seq-map
|
|
(lambda (key)
|
|
(cons (substring-no-properties
|
|
(epa--button-key-text key))
|
|
key))
|
|
keys))
|
|
(selected-keys (completing-read-multiple prompt keys-alist)))
|
|
(seq-map
|
|
(lambda (key) (cdr (assoc key keys-alist)))
|
|
selected-keys)))
|
|
|
|
;;;###autoload
|
|
(defun epa-select-keys (context prompt &optional names secret)
|
|
"Display a user's keyring and ask him to select keys.
|
|
CONTEXT is an `epg-context'.
|
|
PROMPT is a string to prompt with.
|
|
NAMES is a list of strings to be matched with keys. If it is nil, all
|
|
the keys are listed.
|
|
If SECRET is non-nil, list secret keys instead of public keys."
|
|
(let ((keys (epg-list-keys context names secret)))
|
|
(pcase epa-keys-select-method
|
|
('minibuffer (epa--select-keys-in-minibuffer prompt keys))
|
|
(_ (epa--select-keys prompt keys)))))
|
|
|
|
;;;; Key Details
|
|
|
|
(defun epa-show-key ()
|
|
"Show a key on the current line."
|
|
(interactive)
|
|
(if-let ((key (get-text-property (point) 'epa-key)))
|
|
(save-selected-window
|
|
(epa--show-key key))
|
|
(error "No key on this line")))
|
|
|
|
(defun epa--show-key (key)
|
|
(let* ((primary-sub-key (car (epg-key-sub-key-list key)))
|
|
(entry (assoc (epg-sub-key-id primary-sub-key)
|
|
epa-key-buffer-alist))
|
|
(inhibit-read-only t)
|
|
buffer-read-only
|
|
pointer)
|
|
(unless entry
|
|
(setq entry (cons (epg-sub-key-id primary-sub-key) nil)
|
|
epa-key-buffer-alist (cons entry epa-key-buffer-alist)))
|
|
(unless (and (cdr entry)
|
|
(buffer-live-p (cdr entry)))
|
|
(setcdr entry (generate-new-buffer
|
|
(format "*Key*%s" (epg-sub-key-id primary-sub-key)))))
|
|
(set-buffer (cdr entry))
|
|
(epa-key-mode)
|
|
(setq-local epa-key key)
|
|
(erase-buffer)
|
|
(setq pointer (epg-key-user-id-list key))
|
|
(while pointer
|
|
(if (car pointer)
|
|
(insert " "
|
|
(if (epg-user-id-validity (car pointer))
|
|
(char-to-string
|
|
(car (rassq (epg-user-id-validity (car pointer))
|
|
epg-key-validity-alist)))
|
|
" ")
|
|
" "
|
|
(if (stringp (epg-user-id-string (car pointer)))
|
|
(epg-user-id-string (car pointer))
|
|
(epg-decode-dn (epg-user-id-string (car pointer))))
|
|
"\n"))
|
|
(setq pointer (cdr pointer)))
|
|
(setq pointer (epg-key-sub-key-list key))
|
|
(while pointer
|
|
(insert " "
|
|
(if (epg-sub-key-validity (car pointer))
|
|
(char-to-string
|
|
(car (rassq (epg-sub-key-validity (car pointer))
|
|
epg-key-validity-alist)))
|
|
" ")
|
|
" "
|
|
(epg-sub-key-id (car pointer))
|
|
" "
|
|
(format "%dbits"
|
|
(epg-sub-key-length (car pointer)))
|
|
" "
|
|
(cdr (assq (epg-sub-key-algorithm (car pointer))
|
|
epg-pubkey-algorithm-alist))
|
|
"\n\tCreated: "
|
|
(condition-case nil
|
|
(format-time-string "%Y-%m-%d"
|
|
(epg-sub-key-creation-time (car pointer)))
|
|
(error "????-??-??"))
|
|
(if (epg-sub-key-expiration-time (car pointer))
|
|
(format (if (time-less-p nil
|
|
(epg-sub-key-expiration-time
|
|
(car pointer)))
|
|
"\n\tExpires: %s"
|
|
"\n\tExpired: %s")
|
|
(condition-case nil
|
|
(format-time-string "%Y-%m-%d"
|
|
(epg-sub-key-expiration-time
|
|
(car pointer)))
|
|
(error "????-??-??")))
|
|
"")
|
|
"\n\tCapabilities: "
|
|
(mapconcat #'symbol-name
|
|
(epg-sub-key-capability (car pointer))
|
|
" ")
|
|
"\n\tFingerprint: "
|
|
(epg-sub-key-fingerprint (car pointer))
|
|
"\n")
|
|
(setq pointer (cdr pointer)))
|
|
(goto-char (point-min))
|
|
(pop-to-buffer (current-buffer))))
|
|
|
|
;;;; Encryption and Signatures
|
|
|
|
(defun epa-display-info (info)
|
|
(if epa-popup-info-window
|
|
(save-selected-window
|
|
(unless (and epa-info-buffer (buffer-live-p epa-info-buffer))
|
|
(setq epa-info-buffer (generate-new-buffer "*Info*")))
|
|
(if (get-buffer-window epa-info-buffer)
|
|
(delete-window (get-buffer-window epa-info-buffer)))
|
|
(with-current-buffer epa-info-buffer
|
|
(let ((inhibit-read-only t)
|
|
buffer-read-only)
|
|
(erase-buffer)
|
|
(insert info))
|
|
(epa-info-mode)
|
|
(goto-char (point-min)))
|
|
(if (> (window-height)
|
|
epa-info-window-height)
|
|
(set-window-buffer (split-window nil (- (window-height)
|
|
epa-info-window-height))
|
|
epa-info-buffer)
|
|
(pop-to-buffer epa-info-buffer)
|
|
(if (> (window-height) epa-info-window-height)
|
|
(shrink-window (- (window-height) epa-info-window-height)))))
|
|
(message "%s" info)))
|
|
|
|
(defun epa-display-error (context)
|
|
(unless (or (equal (epg-context-error-output context) "")
|
|
epa-suppress-error-buffer)
|
|
(let ((buffer (get-buffer-create "*Error*")))
|
|
(save-selected-window
|
|
(unless (and epa-error-buffer (buffer-live-p epa-error-buffer))
|
|
(setq epa-error-buffer (generate-new-buffer "*Error*")))
|
|
(if (get-buffer-window epa-error-buffer)
|
|
(delete-window (get-buffer-window epa-error-buffer)))
|
|
(with-current-buffer buffer
|
|
(let ((inhibit-read-only t)
|
|
buffer-read-only)
|
|
(erase-buffer)
|
|
(insert (format
|
|
(pcase (epg-context-operation context)
|
|
('decrypt "Error while decrypting with \"%s\":")
|
|
('verify "Error while verifying with \"%s\":")
|
|
('sign "Error while signing with \"%s\":")
|
|
('encrypt "Error while encrypting with \"%s\":")
|
|
('import-keys "Error while importing keys with \"%s\":")
|
|
('export-keys "Error while exporting keys with \"%s\":")
|
|
(_ "Error while executing \"%s\":\n\n"))
|
|
(epg-context-program context))
|
|
"\n\n"
|
|
(epg-context-error-output context)
|
|
(if (string-search "Unexpected error"
|
|
(epg-context-error-output context))
|
|
"\n(File possibly not an encrypted file, but is perhaps a key ring file?)\n"
|
|
"")))
|
|
(epa-info-mode)
|
|
(goto-char (point-min)))
|
|
(display-buffer buffer)))))
|
|
|
|
(defun epa-passphrase-callback-function (context key-id handback)
|
|
(if (eq key-id 'SYM)
|
|
(read-passwd
|
|
(format "Passphrase for symmetric encryption%s: "
|
|
;; Add the file name to the prompt, if any.
|
|
(if (stringp handback)
|
|
(format " for %s" handback)
|
|
""))
|
|
(eq (epg-context-operation context) 'encrypt))
|
|
(read-passwd
|
|
(if (eq key-id 'PIN)
|
|
"Passphrase for PIN: "
|
|
(let ((entry (assoc key-id epg-user-id-alist)))
|
|
(if entry
|
|
(format "Passphrase for %s %s: " key-id (cdr entry))
|
|
(format "Passphrase for %s: " key-id)))))))
|
|
|
|
(defun epa-progress-callback-function (_context what _char current total
|
|
handback)
|
|
(let ((prompt (or handback
|
|
(format "Processing %s: " what))))
|
|
;; According to gnupg/doc/DETAIL: a "total" of 0 indicates that
|
|
;; the total amount is not known. The condition TOTAL && CUR ==
|
|
;; TOTAL may be used to detect the end of an operation.
|
|
(if (> total 0)
|
|
(if (= current total)
|
|
(message "%s...done" prompt)
|
|
(message "%s...%d%%" prompt
|
|
(floor (* 100.0 current) total)))
|
|
(message "%s..." prompt))))
|
|
|
|
(defun epa-read-file-name (input)
|
|
"Interactively read an output file name based on INPUT file name."
|
|
(setq input (file-name-sans-extension (expand-file-name input)))
|
|
(expand-file-name
|
|
(read-file-name
|
|
(format-prompt "To file" (file-name-nondirectory input))
|
|
(file-name-directory input)
|
|
input)))
|
|
|
|
;;;###autoload
|
|
(defun epa-decrypt-file (decrypt-file &optional plain-file)
|
|
"Decrypt DECRYPT-FILE into PLAIN-FILE.
|
|
If you do not specify PLAIN-FILE, this functions prompts for the value to use."
|
|
(interactive
|
|
(let* ((file (read-file-name "File to decrypt: "))
|
|
(plain (epa-read-file-name file)))
|
|
(list file plain)))
|
|
(or plain-file (setq plain-file (epa-read-file-name decrypt-file)))
|
|
(setq decrypt-file (expand-file-name decrypt-file))
|
|
(let ((context (epg-make-context epa-protocol)))
|
|
(epg-context-set-passphrase-callback context
|
|
#'epa-passphrase-callback-function)
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
(format "Decrypting %s..."
|
|
(file-name-nondirectory decrypt-file))))
|
|
(message "Decrypting %s..." (file-name-nondirectory decrypt-file))
|
|
(condition-case error
|
|
(epg-decrypt-file context decrypt-file plain-file)
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Decrypting %s...wrote %s" (file-name-nondirectory decrypt-file)
|
|
(file-name-nondirectory plain-file))
|
|
(if (epg-context-result-for context 'verify)
|
|
(epa-display-info (epg-verify-result-to-string
|
|
(epg-context-result-for context 'verify))))))
|
|
|
|
;;;###autoload
|
|
(defun epa-verify-file (file)
|
|
"Verify FILE."
|
|
(interactive "fFile: ")
|
|
(setq file (expand-file-name file))
|
|
(let* ((context (epg-make-context epa-protocol))
|
|
(plain (if (equal (file-name-extension file) "sig")
|
|
(file-name-sans-extension file))))
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
(format "Verifying %s..."
|
|
(file-name-nondirectory file))))
|
|
(message "Verifying %s..." (file-name-nondirectory file))
|
|
(condition-case error
|
|
(epg-verify-file context file plain)
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Verifying %s...done" (file-name-nondirectory file))
|
|
(if (epg-context-result-for context 'verify)
|
|
(epa-display-info (epg-verify-result-to-string
|
|
(epg-context-result-for context 'verify)))
|
|
(message "Verification not successful"))))
|
|
|
|
(defun epa--read-signature-type ()
|
|
(let (type c)
|
|
(while (null type)
|
|
(message "Signature type (n,c,d,?) ")
|
|
(setq c (read-char))
|
|
(cond ((eq c ?c)
|
|
(setq type 'clear))
|
|
((eq c ?d)
|
|
(setq type 'detached))
|
|
((eq c ??)
|
|
(with-output-to-temp-buffer "*Help*"
|
|
(with-current-buffer standard-output
|
|
(insert "\
|
|
n - Create a normal signature
|
|
c - Create a cleartext signature
|
|
d - Create a detached signature
|
|
? - Show this help
|
|
"))))
|
|
(t
|
|
(setq type 'normal))))
|
|
type))
|
|
|
|
;;;###autoload
|
|
(defun epa-sign-file (file signers mode)
|
|
"Sign FILE by SIGNERS keys selected."
|
|
(interactive
|
|
(let ((verbose current-prefix-arg))
|
|
(list (expand-file-name (read-file-name "File: "))
|
|
(if verbose
|
|
(epa-select-keys (epg-make-context epa-protocol)
|
|
"Select keys for signing.
|
|
If no one is selected, default secret key is used. "
|
|
nil t))
|
|
(if verbose
|
|
(epa--read-signature-type)
|
|
'clear))))
|
|
(let ((signature (concat file
|
|
(if (eq epa-protocol 'OpenPGP)
|
|
(if (or epa-armor
|
|
(not (memq mode
|
|
'(nil t normal detached))))
|
|
".asc"
|
|
(if (memq mode '(t detached))
|
|
".sig"
|
|
".gpg"))
|
|
(if (memq mode '(t detached))
|
|
".p7s"
|
|
".p7m"))))
|
|
(context (epg-make-context epa-protocol)))
|
|
(setf (epg-context-armor context) epa-armor)
|
|
(setf (epg-context-textmode context) epa-textmode)
|
|
(setf (epg-context-signers context) signers)
|
|
(epg-context-set-passphrase-callback context
|
|
#'epa-passphrase-callback-function)
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
(format "Signing %s..."
|
|
(file-name-nondirectory file))))
|
|
(message "Signing %s..." (file-name-nondirectory file))
|
|
(condition-case error
|
|
(epg-sign-file context file signature mode)
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Signing %s...wrote %s" (file-name-nondirectory file)
|
|
(file-name-nondirectory signature))))
|
|
|
|
;;;###autoload
|
|
(defun epa-encrypt-file (file recipients)
|
|
"Encrypt FILE for RECIPIENTS."
|
|
(interactive
|
|
(list (expand-file-name (read-file-name "File: "))
|
|
(epa-select-keys (epg-make-context epa-protocol)
|
|
"Select recipients for encryption.
|
|
If no one is selected, symmetric encryption will be performed. ")))
|
|
(let ((cipher (concat file (if (eq epa-protocol 'OpenPGP)
|
|
(if epa-armor ".asc" ".gpg")
|
|
".p7m")))
|
|
(context (epg-make-context epa-protocol)))
|
|
(setf (epg-context-armor context) epa-armor)
|
|
(setf (epg-context-textmode context) epa-textmode)
|
|
(epg-context-set-passphrase-callback context
|
|
#'epa-passphrase-callback-function)
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
(format "Encrypting %s..."
|
|
(file-name-nondirectory file))))
|
|
(message "Encrypting %s..." (file-name-nondirectory file))
|
|
(condition-case error
|
|
(epg-encrypt-file context file recipients cipher)
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Encrypting %s...wrote %s" (file-name-nondirectory file)
|
|
(file-name-nondirectory cipher))))
|
|
|
|
;;;###autoload
|
|
(defun epa-decrypt-region (start end &optional make-buffer-function)
|
|
"Decrypt the current region between START and END.
|
|
|
|
If MAKE-BUFFER-FUNCTION is non-nil, call it to prepare an output buffer.
|
|
It should return that buffer. If it copies the input, it should
|
|
delete the text now being decrypted. It should leave point at the
|
|
proper place to insert the plaintext.
|
|
|
|
Be careful about using this command in Lisp programs!
|
|
Since this function operates on regions, it does some tricks such
|
|
as coding-system detection and unibyte/multibyte conversion. If
|
|
you are sure how the data in the region should be treated, you
|
|
should consider using the string based counterpart
|
|
`epg-decrypt-string', or the file based counterpart
|
|
`epg-decrypt-file' instead.
|
|
|
|
For example:
|
|
|
|
\(let ((context (epg-make-context \\='OpenPGP)))
|
|
(decode-coding-string
|
|
(epg-decrypt-string context (buffer-substring start end))
|
|
\\='utf-8))"
|
|
(interactive "r")
|
|
(save-excursion
|
|
(let ((context (epg-make-context epa-protocol))
|
|
plain)
|
|
(epg-context-set-passphrase-callback context
|
|
#'epa-passphrase-callback-function)
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
"Decrypting..."))
|
|
(message "Decrypting...")
|
|
(condition-case error
|
|
(setq plain (epg-decrypt-string context (buffer-substring start end)))
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Decrypting...done")
|
|
(setq plain (decode-coding-string
|
|
plain
|
|
(or coding-system-for-read
|
|
(get-text-property start 'epa-coding-system-used)
|
|
'undecided)))
|
|
(if make-buffer-function
|
|
(with-current-buffer (funcall make-buffer-function)
|
|
(let ((inhibit-read-only t))
|
|
(insert plain)))
|
|
(if (or (eq epa-replace-original-text t)
|
|
(and epa-replace-original-text
|
|
(y-or-n-p "Replace the original text? ")))
|
|
(let ((inhibit-read-only t))
|
|
(delete-region start end)
|
|
(goto-char start)
|
|
(insert plain))
|
|
(with-output-to-temp-buffer "*Temp*"
|
|
(set-buffer standard-output)
|
|
(insert plain)
|
|
(epa-info-mode))))
|
|
(if (epg-context-result-for context 'verify)
|
|
(epa-display-info (epg-verify-result-to-string
|
|
(epg-context-result-for context 'verify)))))))
|
|
|
|
(defun epa--find-coding-system-for-mime-charset (mime-charset)
|
|
;; Find the first coding system which corresponds to MIME-CHARSET.
|
|
(let ((pointer (coding-system-list)))
|
|
(while (and pointer
|
|
(not (eq (coding-system-get (car pointer) 'mime-charset)
|
|
mime-charset)))
|
|
(setq pointer (cdr pointer)))
|
|
(car pointer)))
|
|
|
|
;;;###autoload
|
|
(defun epa-decrypt-armor-in-region (start end)
|
|
"Decrypt OpenPGP armors in the current region between START and END.
|
|
|
|
Don't use this command in Lisp programs!
|
|
See the reason described in the `epa-decrypt-region' documentation."
|
|
(declare (interactive-only t))
|
|
(interactive "r")
|
|
(save-excursion
|
|
(save-restriction
|
|
(narrow-to-region start end)
|
|
(goto-char start)
|
|
(let (armor-start armor-end)
|
|
(while (re-search-forward "-----BEGIN PGP MESSAGE-----$" nil t)
|
|
(setq armor-start (match-beginning 0)
|
|
armor-end (re-search-forward "^-----END PGP MESSAGE-----$"
|
|
nil t))
|
|
(unless armor-end
|
|
(error "Encryption armor beginning has no matching end"))
|
|
(goto-char armor-start)
|
|
(let ((coding-system-for-read
|
|
(or coding-system-for-read
|
|
(if (re-search-forward "^Charset: \\(.*\\)" armor-end t)
|
|
(epa--find-coding-system-for-mime-charset
|
|
(intern (downcase (match-string 1))))))))
|
|
(goto-char armor-end)
|
|
(epa-decrypt-region armor-start armor-end)))))))
|
|
|
|
;;;###autoload
|
|
(defun epa-verify-region (start end)
|
|
"Verify the current region between START and END.
|
|
|
|
Don't use this command in Lisp programs!
|
|
Since this function operates on regions, it does some tricks such
|
|
as coding-system detection and unibyte/multibyte conversion. If
|
|
you are sure how the data in the region should be treated, you
|
|
should consider using the string based counterpart
|
|
`epg-verify-string', or the file based counterpart
|
|
`epg-verify-file' instead.
|
|
|
|
For example:
|
|
|
|
\(let ((context (epg-make-context \\='OpenPGP)))
|
|
(decode-coding-string
|
|
(epg-verify-string context (buffer-substring start end))
|
|
\\='utf-8))"
|
|
(declare (interactive-only t))
|
|
(interactive "r")
|
|
(let ((context (epg-make-context epa-protocol))
|
|
plain)
|
|
(setf (epg-context-progress-callback context)
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
"Verifying..."))
|
|
(message "Verifying...")
|
|
(condition-case error
|
|
(setq plain (epg-verify-string
|
|
context
|
|
(encode-coding-string
|
|
(buffer-substring start end)
|
|
(or coding-system-for-write
|
|
(get-text-property start 'epa-coding-system-used)))))
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Verifying...done")
|
|
(setq plain (decode-coding-string
|
|
plain
|
|
(or coding-system-for-read
|
|
(get-text-property start 'epa-coding-system-used)
|
|
'undecided)))
|
|
(unless (epg-context-result-for context 'verify)
|
|
(error "Unable to verify region"))
|
|
(if (or (eq epa-replace-original-text t)
|
|
(and epa-replace-original-text
|
|
(y-or-n-p "Replace the original text? ")))
|
|
(let ((inhibit-read-only t)
|
|
buffer-read-only)
|
|
(delete-region start end)
|
|
(goto-char start)
|
|
(insert plain))
|
|
(with-output-to-temp-buffer "*Temp*"
|
|
(set-buffer standard-output)
|
|
(insert plain)
|
|
(epa-info-mode)))
|
|
(if (epg-context-result-for context 'verify)
|
|
(epa-display-info (epg-verify-result-to-string
|
|
(epg-context-result-for context 'verify))))))
|
|
|
|
;;;###autoload
|
|
(defun epa-verify-cleartext-in-region (start end)
|
|
"Verify OpenPGP cleartext signed messages in current region from START to END.
|
|
|
|
Don't use this command in Lisp programs!
|
|
See the reason described in the `epa-verify-region' documentation."
|
|
(declare (interactive-only t))
|
|
(interactive "r")
|
|
(save-excursion
|
|
(save-restriction
|
|
(narrow-to-region start end)
|
|
(goto-char start)
|
|
(let (cleartext-start cleartext-end)
|
|
(while (re-search-forward "-----BEGIN PGP SIGNED MESSAGE-----$"
|
|
nil t)
|
|
(setq cleartext-start (match-beginning 0))
|
|
(unless (re-search-forward "^-----BEGIN PGP SIGNATURE-----$"
|
|
nil t)
|
|
(error "Invalid cleartext signed message"))
|
|
(setq cleartext-end (re-search-forward
|
|
"^-----END PGP SIGNATURE-----$"
|
|
nil t))
|
|
(unless cleartext-end
|
|
(error "No cleartext tail"))
|
|
(with-suppressed-warnings ((interactive-only epa-verify-region))
|
|
(epa-verify-region cleartext-start cleartext-end)))))))
|
|
|
|
;;;###autoload
|
|
(defun epa-sign-region (start end signers mode)
|
|
"Sign the current region between START and END by SIGNERS keys selected.
|
|
|
|
Don't use this command in Lisp programs!
|
|
Since this function operates on regions, it does some tricks such
|
|
as coding-system detection and unibyte/multibyte conversion. If
|
|
you are sure how the data should be treated, you should consider
|
|
using the string based counterpart `epg-sign-string', or the file
|
|
based counterpart `epg-sign-file' instead.
|
|
|
|
For example:
|
|
|
|
\(let ((context (epg-make-context \\='OpenPGP)))
|
|
(epg-sign-string
|
|
context
|
|
(encode-coding-string (buffer-substring start end) \\='utf-8)))"
|
|
(declare (interactive-only t))
|
|
(interactive
|
|
(let ((verbose current-prefix-arg))
|
|
(setq epa-last-coding-system-specified
|
|
(or coding-system-for-write
|
|
(select-safe-coding-system
|
|
(region-beginning) (region-end))))
|
|
(list (region-beginning) (region-end)
|
|
(if verbose
|
|
(epa-select-keys (epg-make-context epa-protocol)
|
|
"Select keys for signing.
|
|
If no one is selected, default secret key is used. "
|
|
nil t))
|
|
(if verbose
|
|
(epa--read-signature-type)
|
|
'clear))))
|
|
(save-excursion
|
|
(let ((context (epg-make-context epa-protocol))
|
|
signature)
|
|
;;(setf (epg-context-armor context) epa-armor)
|
|
(setf (epg-context-armor context) t)
|
|
;;(setf (epg-context-textmode context) epa-textmode)
|
|
(setf (epg-context-textmode context) t)
|
|
(setf (epg-context-signers context) signers)
|
|
(epg-context-set-passphrase-callback context
|
|
#'epa-passphrase-callback-function)
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
"Signing..."))
|
|
(message "Signing...")
|
|
(condition-case error
|
|
(setq signature (epg-sign-string context
|
|
(encode-coding-string
|
|
(buffer-substring start end)
|
|
epa-last-coding-system-specified)
|
|
mode))
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Signing...done")
|
|
(delete-region start end)
|
|
(goto-char start)
|
|
(add-text-properties (point)
|
|
(progn
|
|
(insert (decode-coding-string
|
|
signature
|
|
(or coding-system-for-read
|
|
epa-last-coding-system-specified)))
|
|
(point))
|
|
(list 'epa-coding-system-used
|
|
epa-last-coding-system-specified
|
|
'front-sticky nil
|
|
'rear-nonsticky t)))))
|
|
|
|
(define-obsolete-function-alias 'epa--derived-mode-p 'derived-mode-p "28.1")
|
|
|
|
;;;###autoload
|
|
(defun epa-encrypt-region (start end recipients sign signers)
|
|
"Encrypt the current region between START and END for RECIPIENTS.
|
|
|
|
Don't use this command in Lisp programs!
|
|
Since this function operates on regions, it does some tricks such
|
|
as coding-system detection and unibyte/multibyte conversion. If
|
|
you are sure how the data should be treated, you should consider
|
|
using the string based counterpart `epg-encrypt-string', or the
|
|
file based counterpart `epg-encrypt-file' instead.
|
|
|
|
For example:
|
|
|
|
\(let ((context (epg-make-context \\='OpenPGP)))
|
|
(epg-encrypt-string
|
|
context
|
|
(encode-coding-string (buffer-substring start end) \\='utf-8)
|
|
nil))"
|
|
(declare (interactive-only t))
|
|
(interactive
|
|
(let ((verbose current-prefix-arg)
|
|
(context (epg-make-context epa-protocol))
|
|
sign)
|
|
(setq epa-last-coding-system-specified
|
|
(or coding-system-for-write
|
|
(select-safe-coding-system
|
|
(region-beginning) (region-end))))
|
|
(list (region-beginning) (region-end)
|
|
(epa-select-keys context
|
|
"Select recipients for encryption.
|
|
If no one is selected, symmetric encryption will be performed. ")
|
|
(setq sign (if verbose (y-or-n-p "Sign? ")))
|
|
(if sign
|
|
(epa-select-keys context
|
|
"Select keys for signing. ")))))
|
|
(save-excursion
|
|
(let ((context (epg-make-context epa-protocol))
|
|
cipher)
|
|
;;(setf (epg-context-armor context) epa-armor)
|
|
(setf (epg-context-armor context) t)
|
|
;;(setf (epg-context-textmode context) epa-textmode)
|
|
(setf (epg-context-textmode context) t)
|
|
(if sign
|
|
(setf (epg-context-signers context) signers))
|
|
(epg-context-set-passphrase-callback context
|
|
#'epa-passphrase-callback-function)
|
|
(epg-context-set-progress-callback context
|
|
(cons
|
|
#'epa-progress-callback-function
|
|
"Encrypting..."))
|
|
(message "Encrypting...")
|
|
(condition-case error
|
|
(setq cipher (epg-encrypt-string context
|
|
(encode-coding-string
|
|
(buffer-substring start end)
|
|
epa-last-coding-system-specified)
|
|
recipients
|
|
sign))
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Encrypting...done")
|
|
(delete-region start end)
|
|
(goto-char start)
|
|
(add-text-properties (point)
|
|
(progn
|
|
(insert cipher)
|
|
(point))
|
|
(list 'epa-coding-system-used
|
|
epa-last-coding-system-specified
|
|
'front-sticky nil
|
|
'rear-nonsticky t)))))
|
|
|
|
;;;; Key Management
|
|
|
|
;;;###autoload
|
|
(defun epa-delete-keys (keys &optional allow-secret)
|
|
"Delete selected KEYS."
|
|
(interactive
|
|
(let ((keys (epa--marked-keys)))
|
|
(unless keys
|
|
(error "No keys selected"))
|
|
(list keys
|
|
(eq (nth 1 epa-list-keys-arguments) t))))
|
|
(let ((context (epg-make-context epa-protocol)))
|
|
(message "Deleting...")
|
|
(condition-case error
|
|
(epg-delete-keys context keys allow-secret)
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Deleting...done")
|
|
(apply #'epa--list-keys epa-list-keys-arguments)))
|
|
|
|
;;;###autoload
|
|
(defun epa-import-keys (file)
|
|
"Import keys from FILE."
|
|
(interactive "fFile: ")
|
|
(setq file (expand-file-name file))
|
|
(let ((context (epg-make-context epa-protocol)))
|
|
(message "Importing %s..." (file-name-nondirectory file))
|
|
(condition-case nil
|
|
(progn
|
|
(epg-import-keys-from-file context file)
|
|
(message "Importing %s...done" (file-name-nondirectory file)))
|
|
(error
|
|
(epa-display-error context)
|
|
(message "Importing %s...failed" (file-name-nondirectory file))))
|
|
(if (epg-context-result-for context 'import)
|
|
(epa-display-info (epg-import-result-to-string
|
|
(epg-context-result-for context 'import))))
|
|
;; FIXME: Why not use the derived-mode-p?
|
|
(if (eq major-mode 'epa-key-list-mode)
|
|
(apply #'epa--list-keys epa-list-keys-arguments))))
|
|
|
|
;;;###autoload
|
|
(defun epa-import-keys-region (start end)
|
|
"Import keys from the region."
|
|
(interactive "r")
|
|
(let ((context (epg-make-context epa-protocol)))
|
|
(message "Importing...")
|
|
(condition-case nil
|
|
(progn
|
|
(epg-import-keys-from-string context (buffer-substring start end))
|
|
(message "Importing...done"))
|
|
(error
|
|
(epa-display-error context)
|
|
(message "Importing...failed")))
|
|
(if (epg-context-result-for context 'import)
|
|
(epa-display-info (epg-import-result-to-string
|
|
(epg-context-result-for context 'import))))))
|
|
|
|
;;;###autoload
|
|
(defun epa-import-armor-in-region (start end)
|
|
"Import keys in the OpenPGP armor format in the current region from START to END."
|
|
(interactive "r")
|
|
(save-excursion
|
|
(save-restriction
|
|
(narrow-to-region start end)
|
|
(goto-char start)
|
|
(let (armor-start armor-end)
|
|
(while (re-search-forward
|
|
"-----BEGIN \\(PGP \\(PUBLIC\\|PRIVATE\\) KEY BLOCK\\)-----$"
|
|
nil t)
|
|
(setq armor-start (match-beginning 0)
|
|
armor-end (re-search-forward
|
|
(concat "^-----END " (match-string 1) "-----$")
|
|
nil t))
|
|
(unless armor-end
|
|
(error "No armor tail"))
|
|
(epa-import-keys-region armor-start armor-end))))))
|
|
|
|
;;;###autoload
|
|
(defun epa-export-keys (keys file)
|
|
"Export selected KEYS to FILE."
|
|
(interactive
|
|
(let ((keys (epa--marked-keys))
|
|
default-name)
|
|
(unless keys
|
|
(error "No keys selected"))
|
|
(setq default-name
|
|
(expand-file-name
|
|
(concat (epg-sub-key-id (car (epg-key-sub-key-list (car keys))))
|
|
(if epa-armor ".asc" ".gpg"))
|
|
default-directory))
|
|
(list keys
|
|
(expand-file-name
|
|
(read-file-name
|
|
(format-prompt "To file" (file-name-nondirectory default-name))
|
|
(file-name-directory default-name)
|
|
default-name)))))
|
|
(let ((context (epg-make-context epa-protocol)))
|
|
(setf (epg-context-armor context) epa-armor)
|
|
(message "Exporting to %s..." (file-name-nondirectory file))
|
|
(condition-case error
|
|
(epg-export-keys-to-file context keys file)
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))
|
|
(message "Exporting to %s...done" (file-name-nondirectory file))))
|
|
|
|
;;;###autoload
|
|
(defun epa-insert-keys (keys)
|
|
"Insert selected KEYS after the point."
|
|
(interactive
|
|
(list (epa-select-keys (epg-make-context epa-protocol)
|
|
"Select keys to export.
|
|
If no one is selected, default public key is exported. ")))
|
|
(let ((context (epg-make-context epa-protocol)))
|
|
;;(setf (epg-context-armor context) epa-armor)
|
|
(setf (epg-context-armor context) t)
|
|
(condition-case error
|
|
(insert (epg-export-keys-to-string context keys))
|
|
(error
|
|
(epa-display-error context)
|
|
(signal (car error) (cdr error))))))
|
|
|
|
(provide 'epa)
|
|
|
|
;;; epa.el ends here
|