1 ;;; epa.el --- the EasyPG Assistant -*- lexical-binding: t -*-
3 ;; Copyright (C) 2006-2012 Free Software Foundation, Inc.
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Keywords: PGP, GnuPG
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 (eval-when-compile (require 'wid-edit
))
32 "The EasyPG Assistant"
36 (defcustom epa-popup-info-window t
37 "If non-nil, status information from epa commands is displayed on
42 (defcustom epa-info-window-height
5
43 "Number of lines used to display status information."
47 (defgroup epa-faces nil
52 (defface epa-validity-high
53 `((((class color
) (background dark
))
54 (:foreground
"PaleTurquoise"
55 ,@(if (assq ':weight custom-face-attributes
)
59 (,@(if (assq ':weight custom-face-attributes
)
62 "Face used for displaying the high validity."
65 (defface epa-validity-medium
66 `((((class color
) (background dark
))
67 (:foreground
"PaleTurquoise"
68 ,@(if (assq ':slant custom-face-attributes
)
72 (,@(if (assq ':slant custom-face-attributes
)
75 "Face used for displaying the medium validity."
78 (defface epa-validity-low
80 (,@(if (assq ':slant custom-face-attributes
)
83 "Face used for displaying the low validity."
86 (defface epa-validity-disabled
88 (,@(if (assq ':slant custom-face-attributes
)
92 "Face used for displaying the disabled validity."
96 '((((class color
) (background dark
))
97 (:foreground
"lightyellow"))
98 (((class color
) (background light
))
99 (:foreground
"blue4")))
100 "Face used for displaying the string."
104 `((((class color
) (background dark
))
105 (:foreground
"orange"
106 ,@(if (assq ':weight custom-face-attributes
)
109 (((class color
) (background light
))
111 ,@(if (assq ':weight custom-face-attributes
)
115 (,@(if (assq ':weight custom-face-attributes
)
118 "Face used for displaying the high validity."
121 (defface epa-field-name
122 `((((class color
) (background dark
))
123 (:foreground
"PaleTurquoise"
124 ,@(if (assq ':weight custom-face-attributes
)
128 (,@(if (assq ':weight custom-face-attributes
)
131 "Face for the name of the attribute field."
134 (defface epa-field-body
135 `((((class color
) (background dark
))
136 (:foreground
"turquoise"
137 ,@(if (assq ':slant custom-face-attributes
)
141 (,@(if (assq ':slant custom-face-attributes
)
144 "Face for the body of the attribute field."
147 (defcustom epa-validity-face-alist
148 '((unknown . epa-validity-disabled
)
149 (invalid . epa-validity-disabled
)
150 (disabled . epa-validity-disabled
)
151 (revoked . epa-validity-disabled
)
152 (expired . epa-validity-disabled
)
153 (none . epa-validity-low
)
154 (undefined . epa-validity-low
)
155 (never . epa-validity-low
)
156 (marginal . epa-validity-medium
)
157 (full . epa-validity-high
)
158 (ultimate . epa-validity-high
))
159 "An alist mapping validity values to faces."
160 :type
'(repeat (cons symbol face
))
163 (defvar epa-font-lock-keywords
166 ("^\t\\([^\t:]+:\\)[ \t]*\\(.*\\)$"
168 (2 'epa-field-body
)))
169 "Default expressions to addon in epa-mode.")
171 (defconst epa-pubkey-algorithm-letter-alist
179 (defvar epa-protocol
'OpenPGP
180 "*The default protocol.
181 The value can be either OpenPGP or CMS.
183 You should bind this variable with `let', but do not set it globally.")
185 (defvar epa-armor nil
186 "*If non-nil, epa commands create ASCII armored output.
188 You should bind this variable with `let', but do not set it globally.")
190 (defvar epa-textmode nil
191 "*If non-nil, epa commands treat input files as text.
193 You should bind this variable with `let', but do not set it globally.")
195 (defvar epa-keys-buffer nil
)
196 (defvar epa-key-buffer-alist nil
)
198 (defvar epa-list-keys-arguments nil
)
199 (defvar epa-info-buffer nil
)
200 (defvar epa-last-coding-system-specified nil
)
202 (defvar epa-key-list-mode-map
203 (let ((keymap (make-sparse-keymap))
204 (menu-map (make-sparse-keymap)))
205 (define-key keymap
"m" 'epa-mark-key
)
206 (define-key keymap
"u" 'epa-unmark-key
)
207 (define-key keymap
"d" 'epa-decrypt-file
)
208 (define-key keymap
"v" 'epa-verify-file
)
209 (define-key keymap
"s" 'epa-sign-file
)
210 (define-key keymap
"e" 'epa-encrypt-file
)
211 (define-key keymap
"r" 'epa-delete-keys
)
212 (define-key keymap
"i" 'epa-import-keys
)
213 (define-key keymap
"o" 'epa-export-keys
)
214 (define-key keymap
"g" 'revert-buffer
)
215 (define-key keymap
"n" 'next-line
)
216 (define-key keymap
"p" 'previous-line
)
217 (define-key keymap
" " 'scroll-up-command
)
218 (define-key keymap
[delete] 'scroll-down-command)
219 (define-key keymap "q" 'epa-exit-buffer)
220 (define-key keymap [menu-bar epa-key-list-mode] (cons "Keys" menu-map))
221 (define-key menu-map [epa-key-list-unmark-key]
222 '(menu-item "Unmark Key" epa-unmark-key
223 :help "Unmark a key"))
224 (define-key menu-map [epa-key-list-mark-key]
225 '(menu-item "Mark Key" epa-mark-key
227 (define-key menu-map [separator-epa-file] '(menu-item "--"))
228 (define-key menu-map [epa-verify-file]
229 '(menu-item "Verify File..." epa-verify-file
230 :help "Verify FILE"))
231 (define-key menu-map [epa-sign-file]
232 '(menu-item "Sign File..." epa-sign-file
233 :help "Sign FILE by SIGNERS keys selected"))
234 (define-key menu-map [epa-decrypt-file]
235 '(menu-item "Decrypt File..." epa-decrypt-file
236 :help "Decrypt FILE"))
237 (define-key menu-map [epa-encrypt-file]
238 '(menu-item "Encrypt File..." epa-encrypt-file
239 :help "Encrypt FILE for RECIPIENTS"))
240 (define-key menu-map [separator-epa-key-list] '(menu-item "--"))
241 (define-key menu-map [epa-key-list-delete-keys]
242 '(menu-item "Delete Keys" epa-delete-keys
243 :help "Delete Marked Keys"))
244 (define-key menu-map [epa-key-list-import-keys]
245 '(menu-item "Import Keys" epa-import-keys
246 :help "Import keys from a file"))
247 (define-key menu-map [epa-key-list-export-keys]
248 '(menu-item "Export Keys" epa-export-keys
249 :help "Export marked keys to a file"))
252 (defvar epa-key-mode-map
253 (let ((keymap (make-sparse-keymap)))
254 (define-key keymap "q" 'epa-exit-buffer)
257 (defvar epa-info-mode-map
258 (let ((keymap (make-sparse-keymap)))
259 (define-key keymap "q" 'delete-window)
262 (defvar epa-exit-buffer-function #'bury-buffer)
264 (define-widget 'epa-key 'push-button
265 "Button for representing a epg-key object."
267 :button-face-get 'epa--key-widget-button-face-get
268 :value-create 'epa--key-widget-value-create
269 :action 'epa--key-widget-action
270 :help-echo 'epa--key-widget-help-echo)
272 (defun epa--key-widget-action (widget &optional _event)
273 (save-selected-window
274 (epa--show-key (widget-get widget :value))))
276 (defun epa--key-widget-value-create (widget)
277 (let* ((key (widget-get widget :value))
278 (primary-sub-key (car (epg-key-sub-key-list key)))
279 (primary-user-id (car (epg-key-user-id-list key))))
280 (insert (format "%c "
281 (if (epg-sub-key-validity primary-sub-key)
282 (car (rassq (epg-sub-key-validity primary-sub-key)
283 epg-key-validity-alist))
285 (epg-sub-key-id primary-sub-key)
288 (if (stringp (epg-user-id-string primary-user-id))
289 (epg-user-id-string primary-user-id)
290 (epg-decode-dn (epg-user-id-string primary-user-id)))
293 (defun epa--key-widget-button-face-get (widget)
294 (let ((validity (epg-sub-key-validity (car (epg-key-sub-key-list
295 (widget-get widget :value))))))
297 (cdr (assq validity epa-validity-face-alist))
300 (defun epa--key-widget-help-echo (widget)
302 (epg-sub-key-id (car (epg-key-sub-key-list
303 (widget-get widget :value))))))
306 (if (fboundp 'encode-coding-string)
307 (defalias 'epa--encode-coding-string 'encode-coding-string)
308 (defalias 'epa--encode-coding-string 'identity)))
311 (if (fboundp 'decode-coding-string)
312 (defalias 'epa--decode-coding-string 'decode-coding-string)
313 (defalias 'epa--decode-coding-string 'identity)))
315 (defun epa-key-list-mode ()
316 "Major mode for `epa-list-keys'."
317 (kill-all-local-variables)
318 (buffer-disable-undo)
319 (setq major-mode 'epa-key-list-mode
323 (use-local-map epa-key-list-mode-map)
324 (make-local-variable 'font-lock-defaults)
325 (setq font-lock-defaults '(epa-font-lock-keywords t))
326 ;; In XEmacs, auto-initialization of font-lock is not effective
327 ;; if buffer-file-name is not set.
328 (font-lock-set-defaults)
329 (make-local-variable 'epa-exit-buffer-function)
330 (make-local-variable 'revert-buffer-function)
331 (setq revert-buffer-function 'epa--key-list-revert-buffer)
332 (run-mode-hooks 'epa-key-list-mode-hook))
334 (defun epa-key-mode ()
335 "Major mode for a key description."
336 (kill-all-local-variables)
337 (buffer-disable-undo)
338 (setq major-mode 'epa-key-mode
342 (use-local-map epa-key-mode-map)
343 (make-local-variable 'font-lock-defaults)
344 (setq font-lock-defaults '(epa-font-lock-keywords t))
345 ;; In XEmacs, auto-initialization of font-lock is not effective
346 ;; if buffer-file-name is not set.
347 (font-lock-set-defaults)
348 (make-local-variable 'epa-exit-buffer-function)
349 (run-mode-hooks 'epa-key-mode-hook))
351 (defun epa-info-mode ()
352 "Major mode for `epa-info-buffer'."
353 (kill-all-local-variables)
354 (buffer-disable-undo)
355 (setq major-mode 'epa-info-mode
359 (use-local-map epa-info-mode-map)
360 (run-mode-hooks 'epa-info-mode-hook))
362 (defun epa-mark-key (&optional arg)
363 "Mark a key on the current line.
364 If ARG is non-nil, unmark the key."
366 (let ((inhibit-read-only t)
370 (unless (get-text-property (point) 'epa-key)
371 (error "No key on this line"))
372 (setq properties (text-properties-at (point)))
374 (insert (if arg " " "*"))
375 (set-text-properties (1- (point)) (point) properties)
378 (defun epa-unmark-key (&optional arg)
379 "Unmark a key on the current line.
380 If ARG is non-nil, mark the key."
382 (epa-mark-key (not arg)))
384 (defun epa-exit-buffer ()
385 "Exit the current buffer.
386 `epa-exit-buffer-function' is called if it is set."
388 (funcall epa-exit-buffer-function))
390 (defun epa--insert-keys (keys)
393 (narrow-to-region (point) (point))
398 (add-text-properties point (point)
399 (list 'epa-key (car keys)
404 (widget-create 'epa-key :value (car keys))
406 (setq keys (cdr keys))))
407 (add-text-properties (point-min) (point-max)
408 (list 'epa-list-keys t
414 (defun epa--list-keys (name secret)
415 (unless (and epa-keys-buffer
416 (buffer-live-p epa-keys-buffer))
417 (setq epa-keys-buffer (generate-new-buffer "*Keys*")))
418 (set-buffer epa-keys-buffer)
420 (let ((inhibit-read-only t)
423 (context (epg-make-context epa-protocol)))
424 (unless (get-text-property point 'epa-list-keys)
425 (setq point (next-single-property-change point 'epa-list-keys)))
428 (or (next-single-property-change point 'epa-list-keys)
431 (epa--insert-keys (epg-list-keys context name secret))
433 (set-keymap-parent (current-local-map) widget-keymap))
434 (make-local-variable 'epa-list-keys-arguments)
435 (setq epa-list-keys-arguments (list name secret))
436 (goto-char (point-min))
437 (pop-to-buffer (current-buffer)))
440 (defun epa-list-keys (&optional name)
441 "List all keys matched with NAME from the public keyring."
443 (if current-prefix-arg
444 (let ((name (read-string "Pattern: "
445 (if epa-list-keys-arguments
446 (car epa-list-keys-arguments)))))
447 (list (if (equal name "") nil name)))
449 (epa--list-keys name nil))
452 (defun epa-list-secret-keys (&optional name)
453 "List all keys matched with NAME from the private keyring."
455 (if current-prefix-arg
456 (let ((name (read-string "Pattern: "
457 (if epa-list-keys-arguments
458 (car epa-list-keys-arguments)))))
459 (list (if (equal name "") nil name)))
461 (epa--list-keys name t))
463 (defun epa--key-list-revert-buffer (&optional _ignore-auto _noconfirm)
464 (apply #'epa--list-keys epa-list-keys-arguments))
466 (defun epa--marked-keys ()
467 (or (with-current-buffer epa-keys-buffer
468 (goto-char (point-min))
470 (while (re-search-forward "^\\*" nil t)
471 (if (setq key (get-text-property (match-beginning 0)
473 (setq keys (cons key keys))))
475 (let ((key (get-text-property (point-at-bol) 'epa-key)))
479 (defun epa--select-keys (prompt keys)
480 (unless (and epa-keys-buffer
481 (buffer-live-p epa-keys-buffer))
482 (setq epa-keys-buffer (generate-new-buffer "*Keys*")))
483 (with-current-buffer epa-keys-buffer
485 ;; C-c C-c is the usual way to finish the selection (bug#11159).
486 (define-key (current-local-map) "\C-c\C-c" 'exit-recursive-edit)
487 (let ((inhibit-read-only t)
491 (substitute-command-keys "\
492 - `\\[epa-mark-key]' to mark a key on the line
493 - `\\[epa-unmark-key]' to unmark a key on the line\n"))
495 :notify (lambda (&rest _ignore) (abort-recursive-edit))
497 (substitute-command-keys
498 "Click here or \\[abort-recursive-edit] to cancel")
501 :notify (lambda (&rest _ignore) (exit-recursive-edit))
503 (substitute-command-keys
504 "Click here or \\[exit-recursive-edit] to finish")
507 (epa--insert-keys keys)
509 (set-keymap-parent (current-local-map) widget-keymap)
510 (setq epa-exit-buffer-function #'abort-recursive-edit)
511 (goto-char (point-min))
512 (let ((display-buffer-mark-dedicated 'soft))
513 (pop-to-buffer (current-buffer))))
518 (kill-buffer epa-keys-buffer))))
521 (defun epa-select-keys (context prompt &optional names secret)
522 "Display a user's keyring and ask him to select keys.
523 CONTEXT is an epg-context.
524 PROMPT is a string to prompt with.
525 NAMES is a list of strings to be matched with keys. If it is nil, all
527 If SECRET is non-nil, list secret keys instead of public keys."
528 (let ((keys (epg-list-keys context names secret)))
529 (epa--select-keys prompt keys)))
531 (defun epa--show-key (key)
532 (let* ((primary-sub-key (car (epg-key-sub-key-list key)))
533 (entry (assoc (epg-sub-key-id primary-sub-key)
534 epa-key-buffer-alist))
535 (inhibit-read-only t)
539 (setq entry (cons (epg-sub-key-id primary-sub-key) nil)
540 epa-key-buffer-alist (cons entry epa-key-buffer-alist)))
541 (unless (and (cdr entry)
542 (buffer-live-p (cdr entry)))
543 (setcdr entry (generate-new-buffer
544 (format "*Key*%s" (epg-sub-key-id primary-sub-key)))))
545 (set-buffer (cdr entry))
547 (make-local-variable 'epa-key)
550 (setq pointer (epg-key-user-id-list key))
554 (if (epg-user-id-validity (car pointer))
556 (car (rassq (epg-user-id-validity (car pointer))
557 epg-key-validity-alist)))
560 (if (stringp (epg-user-id-string (car pointer)))
561 (epg-user-id-string (car pointer))
562 (epg-decode-dn (epg-user-id-string (car pointer))))
564 (setq pointer (cdr pointer)))
565 (setq pointer (epg-key-sub-key-list key))
568 (if (epg-sub-key-validity (car pointer))
570 (car (rassq (epg-sub-key-validity (car pointer))
571 epg-key-validity-alist)))
574 (epg-sub-key-id (car pointer))
577 (epg-sub-key-length (car pointer)))
579 (cdr (assq (epg-sub-key-algorithm (car pointer))
580 epg-pubkey-algorithm-alist))
583 (format-time-string "%Y-%m-%d"
584 (epg-sub-key-creation-time (car pointer)))
585 (error "????-??-??"))
586 (if (epg-sub-key-expiration-time (car pointer))
587 (format (if (time-less-p (current-time)
588 (epg-sub-key-expiration-time
593 (format-time-string "%Y-%m-%d"
594 (epg-sub-key-expiration-time
596 (error "????-??-??")))
599 (mapconcat #'symbol-name
600 (epg-sub-key-capability (car pointer))
603 (epg-sub-key-fingerprint (car pointer))
605 (setq pointer (cdr pointer)))
606 (goto-char (point-min))
607 (pop-to-buffer (current-buffer))))
609 (defun epa-display-info (info)
610 (if epa-popup-info-window
611 (save-selected-window
612 (unless (and epa-info-buffer (buffer-live-p epa-info-buffer))
613 (setq epa-info-buffer (generate-new-buffer "*Info*")))
614 (if (get-buffer-window epa-info-buffer)
615 (delete-window (get-buffer-window epa-info-buffer)))
616 (with-current-buffer epa-info-buffer
617 (let ((inhibit-read-only t)
622 (goto-char (point-min)))
623 (if (> (window-height)
624 epa-info-window-height)
625 (set-window-buffer (split-window nil (- (window-height)
626 epa-info-window-height))
628 (pop-to-buffer epa-info-buffer)
629 (if (> (window-height) epa-info-window-height)
630 (shrink-window (- (window-height) epa-info-window-height)))))
631 (message "%s" info)))
633 (defun epa-display-verify-result (verify-result)
634 (epa-display-info (epg-verify-result-to-string verify-result)))
635 (make-obsolete 'epa-display-verify-result 'epa-display-info "23.1")
637 (defun epa-passphrase-callback-function (context key-id handback)
640 (format "Passphrase for symmetric encryption%s: "
641 ;; Add the file name to the prompt, if any.
642 (if (stringp handback)
643 (format " for %s" handback)
645 (eq (epg-context-operation context) 'encrypt))
648 "Passphrase for PIN: "
649 (let ((entry (assoc key-id epg-user-id-alist)))
651 (format "Passphrase for %s %s: " key-id (cdr entry))
652 (format "Passphrase for %s: " key-id)))))))
654 (defun epa-progress-callback-function (_context what _char current total
656 (let ((prompt (or handback
657 (format "Processing %s: " what))))
658 ;; According to gnupg/doc/DETAIL: a "total" of 0 indicates that
659 ;; the total amount is not known. The condition TOTAL && CUR ==
660 ;; TOTAL may be used to detect the end of an operation.
662 (if (= current total)
663 (message "%s...done" prompt)
664 (message "%s...%d%%" prompt
665 (floor (* (/ current (float total)) 100))))
666 (message "%s..." prompt))))
669 (defun epa-decrypt-file (file)
671 (interactive "fFile: ")
672 (setq file (expand-file-name file))
673 (let* ((default-name (file-name-sans-extension file))
674 (plain (expand-file-name
676 (concat "To file (default "
677 (file-name-nondirectory default-name)
679 (file-name-directory default-name)
681 (context (epg-make-context epa-protocol)))
682 (epg-context-set-passphrase-callback context
683 #'epa-passphrase-callback-function)
684 (epg-context-set-progress-callback context
686 #'epa-progress-callback-function
687 (format "Decrypting %s..."
688 (file-name-nondirectory file))))
689 (message "Decrypting %s..." (file-name-nondirectory file))
690 (epg-decrypt-file context file plain)
691 (message "Decrypting %s...wrote %s" (file-name-nondirectory file)
692 (file-name-nondirectory plain))
693 (if (epg-context-result-for context 'verify)
694 (epa-display-info (epg-verify-result-to-string
695 (epg-context-result-for context 'verify))))))
698 (defun epa-verify-file (file)
700 (interactive "fFile: ")
701 (setq file (expand-file-name file))
702 (let* ((context (epg-make-context epa-protocol))
703 (plain (if (equal (file-name-extension file) "sig")
704 (file-name-sans-extension file))))
705 (epg-context-set-progress-callback context
707 #'epa-progress-callback-function
708 (format "Verifying %s..."
709 (file-name-nondirectory file))))
710 (message "Verifying %s..." (file-name-nondirectory file))
711 (epg-verify-file context file plain)
712 (message "Verifying %s...done" (file-name-nondirectory file))
713 (if (epg-context-result-for context 'verify)
714 (epa-display-info (epg-verify-result-to-string
715 (epg-context-result-for context 'verify))))))
717 (defun epa--read-signature-type ()
720 (message "Signature type (n,c,d,?) ")
725 (setq type 'detached))
727 (with-output-to-temp-buffer "*Help*"
728 (with-current-buffer standard-output
730 n - Create a normal signature
731 c - Create a cleartext signature
732 d - Create a detached signature
736 (setq type 'normal))))
740 (defun epa-sign-file (file signers mode)
741 "Sign FILE by SIGNERS keys selected."
743 (let ((verbose current-prefix-arg))
744 (list (expand-file-name (read-file-name "File: "))
746 (epa-select-keys (epg-make-context epa-protocol)
747 "Select keys for signing.
748 If no one is selected, default secret key is used. "
751 (epa--read-signature-type)
753 (let ((signature (concat file
754 (if (eq epa-protocol 'OpenPGP)
757 '(nil t normal detached))))
759 (if (memq mode '(t detached))
762 (if (memq mode '(t detached))
765 (context (epg-make-context epa-protocol)))
766 (epg-context-set-armor context epa-armor)
767 (epg-context-set-textmode context epa-textmode)
768 (epg-context-set-signers context signers)
769 (epg-context-set-passphrase-callback context
770 #'epa-passphrase-callback-function)
771 (epg-context-set-progress-callback context
773 #'epa-progress-callback-function
774 (format "Signing %s..."
775 (file-name-nondirectory file))))
776 (message "Signing %s..." (file-name-nondirectory file))
777 (epg-sign-file context file signature mode)
778 (message "Signing %s...wrote %s" (file-name-nondirectory file)
779 (file-name-nondirectory signature))))
782 (defun epa-encrypt-file (file recipients)
783 "Encrypt FILE for RECIPIENTS."
785 (list (expand-file-name (read-file-name "File: "))
786 (epa-select-keys (epg-make-context epa-protocol)
787 "Select recipients for encryption.
788 If no one is selected, symmetric encryption will be performed. ")))
789 (let ((cipher (concat file (if (eq epa-protocol 'OpenPGP)
790 (if epa-armor ".asc" ".gpg")
792 (context (epg-make-context epa-protocol)))
793 (epg-context-set-armor context epa-armor)
794 (epg-context-set-textmode context epa-textmode)
795 (epg-context-set-passphrase-callback context
796 #'epa-passphrase-callback-function)
797 (epg-context-set-progress-callback context
799 #'epa-progress-callback-function
800 (format "Encrypting %s..."
801 (file-name-nondirectory file))))
802 (message "Encrypting %s..." (file-name-nondirectory file))
803 (epg-encrypt-file context file recipients cipher)
804 (message "Encrypting %s...wrote %s" (file-name-nondirectory file)
805 (file-name-nondirectory cipher))))
808 (defun epa-decrypt-region (start end &optional make-buffer-function)
809 "Decrypt the current region between START and END.
811 If MAKE-BUFFER-FUNCTION is non-nil, call it to prepare an output buffer.
812 It should return that buffer. If it copies the input, it should
813 delete the text now being decrypted. It should leave point at the
814 proper place to insert the plaintext.
816 Be careful about using this command in Lisp programs!
817 Since this function operates on regions, it does some tricks such
818 as coding-system detection and unibyte/multibyte conversion. If
819 you are sure how the data in the region should be treated, you
820 should consider using the string based counterpart
821 `epg-decrypt-string', or the file based counterpart
822 `epg-decrypt-file' instead.
826 \(let ((context (epg-make-context 'OpenPGP)))
827 (decode-coding-string
828 (epg-decrypt-string context (buffer-substring start end))
832 (let ((context (epg-make-context epa-protocol))
834 (epg-context-set-passphrase-callback context
835 #'epa-passphrase-callback-function)
836 (epg-context-set-progress-callback context
838 #'epa-progress-callback-function
840 (message "Decrypting...")
841 (setq plain (epg-decrypt-string context (buffer-substring start end)))
842 (message "Decrypting...done")
843 (setq plain (epa--decode-coding-string
845 (or coding-system-for-read
846 (get-text-property start 'epa-coding-system-used)
848 (if make-buffer-function
849 (with-current-buffer (funcall make-buffer-function)
850 (let ((inhibit-read-only t))
852 (if (y-or-n-p "Replace the original text? ")
853 (let ((inhibit-read-only t))
854 (delete-region start end)
857 (with-output-to-temp-buffer "*Temp*"
858 (set-buffer standard-output)
861 (if (epg-context-result-for context 'verify)
862 (epa-display-info (epg-verify-result-to-string
863 (epg-context-result-for context 'verify)))))))
865 (defun epa--find-coding-system-for-mime-charset (mime-charset)
866 (if (featurep 'xemacs)
867 (if (fboundp 'find-coding-system)
868 (find-coding-system mime-charset))
869 ;; Find the first coding system which corresponds to MIME-CHARSET.
870 (let ((pointer (coding-system-list)))
872 (not (eq (coding-system-get (car pointer) 'mime-charset)
874 (setq pointer (cdr pointer)))
878 (defun epa-decrypt-armor-in-region (start end)
879 "Decrypt OpenPGP armors in the current region between START and END.
881 Don't use this command in Lisp programs!
882 See the reason described in the `epa-decrypt-region' documentation."
886 (narrow-to-region start end)
888 (let (armor-start armor-end)
889 (while (re-search-forward "-----BEGIN PGP MESSAGE-----$" nil t)
890 (setq armor-start (match-beginning 0)
891 armor-end (re-search-forward "^-----END PGP MESSAGE-----$"
894 (error "Encryption armor beginning has no matching end"))
895 (goto-char armor-start)
896 (let ((coding-system-for-read
897 (or coding-system-for-read
898 (if (re-search-forward "^Charset: \\(.*\\)" armor-end t)
899 (epa--find-coding-system-for-mime-charset
900 (intern (downcase (match-string 1))))))))
901 (goto-char armor-end)
902 (epa-decrypt-region armor-start armor-end)))))))
905 (defun epa-verify-region (start end)
906 "Verify the current region between START and END.
908 Don't use this command in Lisp programs!
909 Since this function operates on regions, it does some tricks such
910 as coding-system detection and unibyte/multibyte conversion. If
911 you are sure how the data in the region should be treated, you
912 should consider using the string based counterpart
913 `epg-verify-string', or the file based counterpart
914 `epg-verify-file' instead.
918 \(let ((context (epg-make-context 'OpenPGP)))
919 (decode-coding-string
920 (epg-verify-string context (buffer-substring start end))
923 (let ((context (epg-make-context epa-protocol))
925 (epg-context-set-progress-callback context
927 #'epa-progress-callback-function
929 (message "Verifying...")
930 (setq plain (epg-verify-string
932 (epa--encode-coding-string
933 (buffer-substring start end)
934 (or coding-system-for-write
935 (get-text-property start 'epa-coding-system-used)))))
936 (message "Verifying...done")
937 (setq plain (epa--decode-coding-string
939 (or coding-system-for-read
940 (get-text-property start 'epa-coding-system-used)
942 (if (y-or-n-p "Replace the original text? ")
943 (let ((inhibit-read-only t)
945 (delete-region start end)
948 (with-output-to-temp-buffer "*Temp*"
949 (set-buffer standard-output)
952 (if (epg-context-result-for context 'verify)
953 (epa-display-info (epg-verify-result-to-string
954 (epg-context-result-for context 'verify))))))
957 (defun epa-verify-cleartext-in-region (start end)
958 "Verify OpenPGP cleartext signed messages in the current region
959 between START and END.
961 Don't use this command in Lisp programs!
962 See the reason described in the `epa-verify-region' documentation."
966 (narrow-to-region start end)
968 (let (cleartext-start cleartext-end)
969 (while (re-search-forward "-----BEGIN PGP SIGNED MESSAGE-----$"
971 (setq cleartext-start (match-beginning 0))
972 (unless (re-search-forward "^-----BEGIN PGP SIGNATURE-----$"
974 (error "Invalid cleartext signed message"))
975 (setq cleartext-end (re-search-forward
976 "^-----END PGP SIGNATURE-----$"
978 (unless cleartext-end
979 (error "No cleartext tail"))
980 (epa-verify-region cleartext-start cleartext-end))))))
983 (if (fboundp 'select-safe-coding-system)
984 (defalias 'epa--select-safe-coding-system 'select-safe-coding-system)
985 (defun epa--select-safe-coding-system (_from _to)
986 buffer-file-coding-system)))
989 (defun epa-sign-region (start end signers mode)
990 "Sign the current region between START and END by SIGNERS keys selected.
992 Don't use this command in Lisp programs!
993 Since this function operates on regions, it does some tricks such
994 as coding-system detection and unibyte/multibyte conversion. If
995 you are sure how the data should be treated, you should consider
996 using the string based counterpart `epg-sign-string', or the file
997 based counterpart `epg-sign-file' instead.
1001 \(let ((context (epg-make-context 'OpenPGP)))
1004 (encode-coding-string (buffer-substring start end) 'utf-8)))"
1006 (let ((verbose current-prefix-arg))
1007 (setq epa-last-coding-system-specified
1008 (or coding-system-for-write
1009 (epa--select-safe-coding-system
1010 (region-beginning) (region-end))))
1011 (list (region-beginning) (region-end)
1013 (epa-select-keys (epg-make-context epa-protocol)
1014 "Select keys for signing.
1015 If no one is selected, default secret key is used. "
1018 (epa--read-signature-type)
1021 (let ((context (epg-make-context epa-protocol))
1023 ;;(epg-context-set-armor context epa-armor)
1024 (epg-context-set-armor context t)
1025 ;;(epg-context-set-textmode context epa-textmode)
1026 (epg-context-set-textmode context t)
1027 (epg-context-set-signers context signers)
1028 (epg-context-set-passphrase-callback context
1029 #'epa-passphrase-callback-function)
1030 (epg-context-set-progress-callback context
1032 #'epa-progress-callback-function
1034 (message "Signing...")
1035 (setq signature (epg-sign-string context
1036 (epa--encode-coding-string
1037 (buffer-substring start end)
1038 epa-last-coding-system-specified)
1040 (message "Signing...done")
1041 (delete-region start end)
1043 (add-text-properties (point)
1045 (insert (epa--decode-coding-string
1047 (or coding-system-for-read
1048 epa-last-coding-system-specified)))
1050 (list 'epa-coding-system-used
1051 epa-last-coding-system-specified
1058 (if (fboundp 'derived-mode-p)
1059 (defalias 'epa--derived-mode-p 'derived-mode-p)
1060 (defun epa--derived-mode-p (&rest modes)
1061 "Non-nil if the current major mode is derived from one of MODES.
1062 Uses the `derived-mode-parent' property of the symbol to trace backwards."
1063 (let ((parent major-mode))
1064 (while (and (not (memq parent modes))
1065 (setq parent (get parent 'derived-mode-parent))))
1069 (defun epa-encrypt-region (start end recipients sign signers)
1070 "Encrypt the current region between START and END for RECIPIENTS.
1072 Don't use this command in Lisp programs!
1073 Since this function operates on regions, it does some tricks such
1074 as coding-system detection and unibyte/multibyte conversion. If
1075 you are sure how the data should be treated, you should consider
1076 using the string based counterpart `epg-encrypt-string', or the
1077 file based counterpart `epg-encrypt-file' instead.
1081 \(let ((context (epg-make-context 'OpenPGP)))
1084 (encode-coding-string (buffer-substring start end) 'utf-8)
1087 (let ((verbose current-prefix-arg)
1088 (context (epg-make-context epa-protocol))
1090 (setq epa-last-coding-system-specified
1091 (or coding-system-for-write
1092 (epa--select-safe-coding-system
1093 (region-beginning) (region-end))))
1094 (list (region-beginning) (region-end)
1095 (epa-select-keys context
1096 "Select recipients for encryption.
1097 If no one is selected, symmetric encryption will be performed. ")
1098 (setq sign (if verbose (y-or-n-p "Sign? ")))
1100 (epa-select-keys context
1101 "Select keys for signing. ")))))
1103 (let ((context (epg-make-context epa-protocol))
1105 ;;(epg-context-set-armor context epa-armor)
1106 (epg-context-set-armor context t)
1107 ;;(epg-context-set-textmode context epa-textmode)
1108 (epg-context-set-textmode context t)
1110 (epg-context-set-signers context signers))
1111 (epg-context-set-passphrase-callback context
1112 #'epa-passphrase-callback-function)
1113 (epg-context-set-progress-callback context
1115 #'epa-progress-callback-function
1117 (message "Encrypting...")
1118 (setq cipher (epg-encrypt-string context
1119 (epa--encode-coding-string
1120 (buffer-substring start end)
1121 epa-last-coding-system-specified)
1124 (message "Encrypting...done")
1125 (delete-region start end)
1127 (add-text-properties (point)
1131 (list 'epa-coding-system-used
1132 epa-last-coding-system-specified
1139 (defun epa-delete-keys (keys &optional allow-secret)
1140 "Delete selected KEYS."
1142 (let ((keys (epa--marked-keys)))
1144 (error "No keys selected"))
1146 (eq (nth 1 epa-list-keys-arguments) t))))
1147 (let ((context (epg-make-context epa-protocol)))
1148 (message "Deleting...")
1149 (epg-delete-keys context keys allow-secret)
1150 (message "Deleting...done")
1151 (apply #'epa--list-keys epa-list-keys-arguments)))
1154 (defun epa-import-keys (file)
1155 "Import keys from FILE."
1156 (interactive "fFile: ")
1157 (setq file (expand-file-name file))
1158 (let ((context (epg-make-context epa-protocol)))
1159 (message "Importing %s..." (file-name-nondirectory file))
1162 (epg-import-keys-from-file context file)
1163 (message "Importing %s...done" (file-name-nondirectory file)))
1165 (message "Importing %s...failed" (file-name-nondirectory file))))
1166 (if (epg-context-result-for context 'import)
1167 (epa-display-info (epg-import-result-to-string
1168 (epg-context-result-for context 'import))))
1169 (if (eq major-mode 'epa-key-list-mode)
1170 (apply #'epa--list-keys epa-list-keys-arguments))))
1173 (defun epa-import-keys-region (start end)
1174 "Import keys from the region."
1176 (let ((context (epg-make-context epa-protocol)))
1177 (message "Importing...")
1180 (epg-import-keys-from-string context (buffer-substring start end))
1181 (message "Importing...done"))
1183 (message "Importing...failed")))
1184 (if (epg-context-result-for context 'import)
1185 (epa-display-info (epg-import-result-to-string
1186 (epg-context-result-for context 'import))))))
1189 (defun epa-import-armor-in-region (start end)
1190 "Import keys in the OpenPGP armor format in the current region
1191 between START and END."
1195 (narrow-to-region start end)
1197 (let (armor-start armor-end)
1198 (while (re-search-forward
1199 "-----BEGIN \\(PGP \\(PUBLIC\\|PRIVATE\\) KEY BLOCK\\)-----$"
1201 (setq armor-start (match-beginning 0)
1202 armor-end (re-search-forward
1203 (concat "^-----END " (match-string 1) "-----$")
1206 (error "No armor tail"))
1207 (epa-import-keys-region armor-start armor-end))))))
1210 (defun epa-export-keys (keys file)
1211 "Export selected KEYS to FILE."
1213 (let ((keys (epa--marked-keys))
1216 (error "No keys selected"))
1219 (concat (epg-sub-key-id (car (epg-key-sub-key-list (car keys))))
1220 (if epa-armor ".asc" ".gpg"))
1225 (concat "To file (default "
1226 (file-name-nondirectory default-name)
1228 (file-name-directory default-name)
1230 (let ((context (epg-make-context epa-protocol)))
1231 (epg-context-set-armor context epa-armor)
1232 (message "Exporting to %s..." (file-name-nondirectory file))
1233 (epg-export-keys-to-file context keys file)
1234 (message "Exporting to %s...done" (file-name-nondirectory file))))
1237 (defun epa-insert-keys (keys)
1238 "Insert selected KEYS after the point."
1240 (list (epa-select-keys (epg-make-context epa-protocol)
1241 "Select keys to export.
1242 If no one is selected, default public key is exported. ")))
1243 (let ((context (epg-make-context epa-protocol)))
1244 ;;(epg-context-set-armor context epa-armor)
1245 (epg-context-set-armor context t)
1246 (insert (epg-export-keys-to-string context keys))))
1248 ;; (defun epa-sign-keys (keys &optional local)
1249 ;; "Sign selected KEYS.
1250 ;; If a prefix-arg is specified, the signature is marked as non exportable.
1252 ;; Don't use this command in Lisp programs!"
1254 ;; (let ((keys (epa--marked-keys)))
1256 ;; (error "No keys selected"))
1257 ;; (list keys current-prefix-arg)))
1258 ;; (let ((context (epg-make-context epa-protocol)))
1259 ;; (epg-context-set-passphrase-callback context
1260 ;; #'epa-passphrase-callback-function)
1261 ;; (epg-context-set-progress-callback context
1263 ;; #'epa-progress-callback-function
1264 ;; "Signing keys..."))
1265 ;; (message "Signing keys...")
1266 ;; (epg-sign-keys context keys local)
1267 ;; (message "Signing keys...done")))
1268 ;; (make-obsolete 'epa-sign-keys "Do not use.")
1272 ;;; epa.el ends here