Create pgg-output-buffer everytime cryptographic operations are called.
[elisp/epg.git] / pgg-epg.el
1 ;;; pgg-epg.el --- Gnus/PGG backend of EasyPG.
2 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
3 ;;   2005, 2006 Free Software Foundation, Inc.
4 ;; Copyright (C) 2006 Daiki Ueno
5
6 ;; Author: Daiki Ueno <ueno@unixuser.org>
7 ;; Keywords: PGP, GnuPG
8
9 ;; This file is part of EasyPG.
10
11 ;; This program is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; This program is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Code:
27
28 (require 'epg)
29 (eval-when-compile (require 'pgg))
30
31 (defvar pgg-epg-secret-key-id-list nil)
32
33 (defun pgg-epg-passphrase-callback (key-id ignore)
34   (if (eq key-id 'SYM)
35       (epg-passphrase-callback-function key-id nil)
36     (let* ((entry (assoc key-id epg-user-id-alist))
37            (passphrase
38             (pgg-read-passphrase
39              (format "GnuPG passphrase for %s: "
40                      (if entry
41                          (cdr entry)
42                        key-id))
43              (if (eq key-id 'PIN)
44                  "PIN"
45                key-id))))
46       (when passphrase
47         (pgg-add-passphrase-to-cache key-id passphrase)
48         (setq pgg-epg-secret-key-id-list
49               (cons key-id pgg-epg-secret-key-id-list))
50         (copy-sequence passphrase)))))
51
52 (defun pgg-epg-encrypt-region (start end recipients &optional sign passphrase)
53   "This function is for internal use only.
54
55 Encrypt the current region between START and END.
56
57 If optional argument SIGN is non-nil, do a combined sign and encrypt.
58
59 If optional PASSPHRASE is not specified, it will be obtained from the
60 passphrase cache or user."
61   (let ((context (epg-make-context))
62         cipher)
63     (epg-context-set-armor context t)
64     (epg-context-set-textmode context pgg-text-mode)
65     (epg-context-set-passphrase-callback context #'pgg-epg-passphrase-callback)
66     (get-buffer-create pgg-output-buffer)
67     (get-buffer-create pgg-errors-buffer)
68     (condition-case error
69         (setq cipher
70               (epg-encrypt-string context
71                                   (buffer-substring start end)
72                                   (mapcar
73                                    (lambda (recipient)
74                                      (car (epg-list-keys recipient)))
75                                    (if pgg-encrypt-for-me
76                                        (cons pgg-default-user-id recipients)
77                                      recipients))
78                                   sign t)
79               pgg-epg-secret-key-id-list nil)
80       (error
81        (while pgg-epg-secret-key-id-list
82          (pgg-remove-passphrase-from-cache (car pgg-epg-secret-key-id-list))
83          (setq pgg-epg-secret-key-id-list (cdr pgg-epg-secret-key-id-list)))
84        (signal (car error) (cdr error))))
85     (save-excursion
86       (set-buffer (get-buffer-create pgg-output-buffer))
87       (erase-buffer)
88       (insert cipher))
89     t))
90
91 (defun pgg-epg-encrypt-symmetric-region (start end &optional passphrase)
92   "This function is for internal use only.
93
94 Encrypt the current region between START and END with symmetric cipher.
95
96 If optional PASSPHRASE is not specified, it will be obtained from the
97 passphrase cache or user."
98   (pgg-epg-encrypt-region start end nil))
99
100 (defun pgg-epg-decrypt-region (start end &optional passphrase)
101   "This function is for internal use only.
102
103 Decrypt the current region between START and END.
104
105 If optional PASSPHRASE is not specified, it will be obtained from the
106 passphrase cache or user."
107   (let ((context (epg-make-context))
108         plain)
109     (epg-context-set-armor context t)
110     (epg-context-set-textmode context pgg-text-mode)
111     (epg-context-set-passphrase-callback context #'pgg-epg-passphrase-callback)
112     (get-buffer-create pgg-output-buffer)
113     (get-buffer-create pgg-errors-buffer)
114     (condition-case error
115         (setq plain (epg-decrypt-string context (buffer-substring start end))
116               pgg-epg-secret-key-id-list nil)
117       (error
118        (while pgg-epg-secret-key-id-list
119          (pgg-remove-passphrase-from-cache (car pgg-epg-secret-key-id-list))
120          (setq pgg-epg-secret-key-id-list (cdr pgg-epg-secret-key-id-list)))
121        (signal (car error) (cdr error))))
122     (save-excursion
123       (set-buffer (get-buffer-create pgg-output-buffer))
124       (erase-buffer)
125       (insert plain))
126     t))
127
128 (defun pgg-epg-sign-region (start end &optional cleartext passphrase)
129   "This function is for internal use only.
130
131 Make detached signature from text between START and END.
132
133 If optional PASSPHRASE is not specified, it will be obtained from the
134 passphrase cache or user."
135   (let ((context (epg-make-context))
136         signature)
137     (epg-context-set-armor context t)
138     (epg-context-set-textmode context pgg-text-mode)
139     (epg-context-set-passphrase-callback context #'pgg-epg-passphrase-callback)
140     (get-buffer-create pgg-output-buffer)
141     (get-buffer-create pgg-errors-buffer)
142     (condition-case error
143         (setq signature
144               (epg-sign-string context
145                                (buffer-substring start end)
146                                (if cleartext
147                                    'clearsign
148                                  'detached))
149               pgg-epg-secret-key-id-list nil)
150       (error
151        (while pgg-epg-secret-key-id-list
152          (pgg-remove-passphrase-from-cache (car pgg-epg-secret-key-id-list))
153          (setq pgg-epg-secret-key-id-list (cdr pgg-epg-secret-key-id-list)))
154        (signal (car error) (cdr error))))
155     (save-excursion
156       (set-buffer (get-buffer-create pgg-output-buffer))
157       (erase-buffer)
158       (insert signature))
159     t))
160
161 (defvar pgg-epg-signatures nil)
162
163 (defun pgg-epg-verify-region (start end &optional signature)
164   "This function is for internal use only.
165
166 Verify region between START and END as the detached signature SIGNATURE."
167   (let ((context (epg-make-context)))
168     (epg-context-set-armor context t)
169     (epg-context-set-textmode context pgg-text-mode)
170     (get-buffer-create pgg-output-buffer)
171     (get-buffer-create pgg-errors-buffer)
172     (if signature
173         (epg-verify-string context
174                            (with-temp-buffer
175                              (insert-file-contents signature)
176                              (buffer-string))
177                            (buffer-substring start end))
178       (epg-verify-string context (buffer-substring start end)))
179     (save-excursion
180       (set-buffer (get-buffer-create pgg-errors-buffer))
181       (make-local-variable 'pgg-epg-signatures)
182       (setq pgg-epg-signatures (epg-context-result-for context 'verify))
183       (erase-buffer)
184       (insert (epg-verify-result-to-string pgg-epg-signatures)))
185     t))
186
187 (defun pgg-epg-insert-key ()
188   "This function is for internal use only.
189
190 Insert public key at point."
191   (let ((context (epg-make-context))
192         pointer)
193     (epg-context-set-armor context t)
194     (epg-context-set-textmode context pgg-text-mode)
195     (insert (epg-export-keys context pgg-default-user-id))))
196
197 (defun pgg-epg-snarf-keys-region (start end)
198   "This function is for internal use only.
199
200 Add all public keys in region between START and END to the keyring."
201   (let ((context (epg-make-context))
202         pointer)
203     (epg-context-set-armor context t)
204     (epg-context-set-textmode context pgg-text-mode)
205     (epg-import-keys context (buffer-substring start end))))
206
207 (defun mml2015-gpg-extract-signature-details ()
208   (if pgg-epg-signatures
209       (let* ((expired (eq (epg-signature-status (car pgg-epg-signatures))
210                           'key-expired))
211              (signer (cons (epg-signature-key-id (car pgg-epg-signatures))
212                            (epg-signature-user-id (car pgg-epg-signatures))))
213              (fprint (epg-signature-fingerprint (car pgg-epg-signatures)))
214              (trust-good-enough-p
215               (memq (epg-signature-validity (car pgg-epg-signatures))
216                     '(marginal fully ultimate))))
217         (cond ((and signer fprint)
218                (concat (cdr signer)
219                        (unless trust-good-enough-p
220                          (concat "\nUntrusted, Fingerprint: "
221                                  (mml2015-gpg-pretty-print-fpr fprint)))
222                        (when expired
223                          (format "\nWARNING: Signature from expired key (%s)"
224                                  (car signer)))))
225               (t
226                "From unknown user")))
227     "From unknown user"))
228
229 (provide 'pgg-epg)
230
231 ;;; pgg-epg.el ends here