]> code.delx.au - gnu-emacs/blob - lisp/epg.el
epg: Support pinentry-curses
[gnu-emacs] / lisp / epg.el
1 ;;; epg.el --- the EasyPG Library -*- lexical-binding: t -*-
2 ;; Copyright (C) 1999-2000, 2002-2012 Free Software Foundation, Inc.
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG
6 ;; Version: 1.0.0
7
8 ;; This file is part of GNU Emacs.
9
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.
14
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.
19
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/>.
22
23 ;;; Code:
24
25 (require 'epg-config)
26
27 (defvar epg-user-id nil
28 "GnuPG ID of your default identity.")
29
30 (defvar epg-user-id-alist nil
31 "An alist mapping from key ID to user ID.")
32
33 (defvar epg-last-status nil)
34 (defvar epg-read-point nil)
35 (defvar epg-process-filter-running nil)
36 (defvar epg-pending-status-list nil)
37 (defvar epg-key-id nil)
38 (defvar epg-context nil)
39 (defvar epg-debug-buffer nil)
40 (defvar epg-agent-file nil)
41 (defvar epg-agent-mtime nil)
42
43 ;; from gnupg/include/cipher.h
44 (defconst epg-cipher-algorithm-alist
45 '((0 . "NONE")
46 (1 . "IDEA")
47 (2 . "3DES")
48 (3 . "CAST5")
49 (4 . "BLOWFISH")
50 (7 . "AES")
51 (8 . "AES192")
52 (9 . "AES256")
53 (10 . "TWOFISH")
54 (11 . "CAMELLIA128")
55 (12 . "CAMELLIA256")
56 (110 . "DUMMY")))
57
58 ;; from gnupg/include/cipher.h
59 (defconst epg-pubkey-algorithm-alist
60 '((1 . "RSA")
61 (2 . "RSA_E")
62 (3 . "RSA_S")
63 (16 . "ELGAMAL_E")
64 (17 . "DSA")
65 (20 . "ELGAMAL")))
66
67 ;; from gnupg/include/cipher.h
68 (defconst epg-digest-algorithm-alist
69 '((1 . "MD5")
70 (2 . "SHA1")
71 (3 . "RIPEMD160")
72 (8 . "SHA256")
73 (9 . "SHA384")
74 (10 . "SHA512")
75 (11 . "SHA224")))
76
77 ;; from gnupg/include/cipher.h
78 (defconst epg-compress-algorithm-alist
79 '((0 . "NONE")
80 (1 . "ZIP")
81 (2 . "ZLIB")
82 (3 . "BZIP2")))
83
84 (defconst epg-invalid-recipients-reason-alist
85 '((0 . "No specific reason given")
86 (1 . "Not Found")
87 (2 . "Ambiguous specification")
88 (3 . "Wrong key usage")
89 (4 . "Key revoked")
90 (5 . "Key expired")
91 (6 . "No CRL known")
92 (7 . "CRL too old")
93 (8 . "Policy mismatch")
94 (9 . "Not a secret key")
95 (10 . "Key not trusted")))
96
97 (defconst epg-delete-problem-reason-alist
98 '((1 . "No such key")
99 (2 . "Must delete secret key first")
100 (3 . "Ambiguous specification")))
101
102 (defconst epg-import-ok-reason-alist
103 '((0 . "Not actually changed")
104 (1 . "Entirely new key")
105 (2 . "New user IDs")
106 (4 . "New signatures")
107 (8 . "New subkeys")
108 (16 . "Contains private key")))
109
110 (defconst epg-import-problem-reason-alist
111 '((0 . "No specific reason given")
112 (1 . "Invalid Certificate")
113 (2 . "Issuer Certificate missing")
114 (3 . "Certificate Chain too long")
115 (4 . "Error storing certificate")))
116
117 (defconst epg-no-data-reason-alist
118 '((1 . "No armored data")
119 (2 . "Expected a packet but did not found one")
120 (3 . "Invalid packet found, this may indicate a non OpenPGP message")
121 (4 . "Signature expected but not found")))
122
123 (defconst epg-unexpected-reason-alist nil)
124
125 (defvar epg-key-validity-alist
126 '((?o . unknown)
127 (?i . invalid)
128 (?d . disabled)
129 (?r . revoked)
130 (?e . expired)
131 (?- . none)
132 (?q . undefined)
133 (?n . never)
134 (?m . marginal)
135 (?f . full)
136 (?u . ultimate)))
137
138 (defvar epg-key-capablity-alist
139 '((?e . encrypt)
140 (?s . sign)
141 (?c . certify)
142 (?a . authentication)
143 (?D . disabled)))
144
145 (defvar epg-new-signature-type-alist
146 '((?D . detached)
147 (?C . clear)
148 (?S . normal)))
149
150 (defvar epg-dn-type-alist
151 '(("1.2.840.113549.1.9.1" . "EMail")
152 ("2.5.4.12" . "T")
153 ("2.5.4.42" . "GN")
154 ("2.5.4.4" . "SN")
155 ("0.2.262.1.10.7.20" . "NameDistinguisher")
156 ("2.5.4.16" . "ADDR")
157 ("2.5.4.15" . "BC")
158 ("2.5.4.13" . "D")
159 ("2.5.4.17" . "PostalCode")
160 ("2.5.4.65" . "Pseudo")
161 ("2.5.4.5" . "SerialNumber")))
162
163 (defvar epg-prompt-alist nil)
164
165 (put 'epg-error 'error-conditions '(epg-error error))
166 (put 'epg-error 'error-message "GPG error")
167
168 (defun epg-make-data-from-file (file)
169 "Make a data object from FILE."
170 (cons 'epg-data (vector file nil)))
171
172 (defun epg-make-data-from-string (string)
173 "Make a data object from STRING."
174 (cons 'epg-data (vector nil string)))
175
176 (defun epg-data-file (data)
177 "Return the file of DATA."
178 (unless (eq (car-safe data) 'epg-data)
179 (signal 'wrong-type-argument (list 'epg-data-p data)))
180 (aref (cdr data) 0))
181
182 (defun epg-data-string (data)
183 "Return the string of DATA."
184 (unless (eq (car-safe data) 'epg-data)
185 (signal 'wrong-type-argument (list 'epg-data-p data)))
186 (aref (cdr data) 1))
187
188 ;;;###autoload
189 (defun epg-make-context (&optional protocol armor textmode include-certs
190 cipher-algorithm digest-algorithm
191 compress-algorithm)
192 "Return a context object."
193 (cons 'epg-context
194 (vector (or protocol 'OpenPGP) armor textmode include-certs
195 cipher-algorithm digest-algorithm compress-algorithm
196 (list #'epg-passphrase-callback-function)
197 nil
198 nil nil nil nil nil nil)))
199
200 (defun epg-context-protocol (context)
201 "Return the protocol used within CONTEXT."
202 (unless (eq (car-safe context) 'epg-context)
203 (signal 'wrong-type-argument (list 'epg-context-p context)))
204 (aref (cdr context) 0))
205
206 (defun epg-context-armor (context)
207 "Return t if the output should be ASCII armored in CONTEXT."
208 (unless (eq (car-safe context) 'epg-context)
209 (signal 'wrong-type-argument (list 'epg-context-p context)))
210 (aref (cdr context) 1))
211
212 (defun epg-context-textmode (context)
213 "Return t if canonical text mode should be used in CONTEXT."
214 (unless (eq (car-safe context) 'epg-context)
215 (signal 'wrong-type-argument (list 'epg-context-p context)))
216 (aref (cdr context) 2))
217
218 (defun epg-context-include-certs (context)
219 "Return how many certificates should be included in an S/MIME signed message."
220 (unless (eq (car-safe context) 'epg-context)
221 (signal 'wrong-type-argument (list 'epg-context-p context)))
222 (aref (cdr context) 3))
223
224 (defun epg-context-cipher-algorithm (context)
225 "Return the cipher algorithm in CONTEXT."
226 (unless (eq (car-safe context) 'epg-context)
227 (signal 'wrong-type-argument (list 'epg-context-p context)))
228 (aref (cdr context) 4))
229
230 (defun epg-context-digest-algorithm (context)
231 "Return the digest algorithm in CONTEXT."
232 (unless (eq (car-safe context) 'epg-context)
233 (signal 'wrong-type-argument (list 'epg-context-p context)))
234 (aref (cdr context) 5))
235
236 (defun epg-context-compress-algorithm (context)
237 "Return the compress algorithm in CONTEXT."
238 (unless (eq (car-safe context) 'epg-context)
239 (signal 'wrong-type-argument (list 'epg-context-p context)))
240 (aref (cdr context) 6))
241
242 (defun epg-context-passphrase-callback (context)
243 "Return the function used to query passphrase."
244 (unless (eq (car-safe context) 'epg-context)
245 (signal 'wrong-type-argument (list 'epg-context-p context)))
246 (aref (cdr context) 7))
247
248 (defun epg-context-progress-callback (context)
249 "Return the function which handles progress update."
250 (unless (eq (car-safe context) 'epg-context)
251 (signal 'wrong-type-argument (list 'epg-context-p context)))
252 (aref (cdr context) 8))
253
254 (defun epg-context-signers (context)
255 "Return the list of key-id for signing."
256 (unless (eq (car-safe context) 'epg-context)
257 (signal 'wrong-type-argument (list 'epg-context-p context)))
258 (aref (cdr context) 9))
259
260 (defun epg-context-sig-notations (context)
261 "Return the list of notations for signing."
262 (unless (eq (car-safe context) 'epg-context)
263 (signal 'wrong-type-argument (list 'epg-context-p context)))
264 (aref (cdr context) 10))
265
266 (defun epg-context-process (context)
267 "Return the process object of `epg-gpg-program'.
268 This function is for internal use only."
269 (unless (eq (car-safe context) 'epg-context)
270 (signal 'wrong-type-argument (list 'epg-context-p context)))
271 (aref (cdr context) 11))
272
273 (defun epg-context-output-file (context)
274 "Return the output file of `epg-gpg-program'.
275 This function is for internal use only."
276 (unless (eq (car-safe context) 'epg-context)
277 (signal 'wrong-type-argument (list 'epg-context-p context)))
278 (aref (cdr context) 12))
279
280 (defun epg-context-result (context)
281 "Return the result of the previous cryptographic operation."
282 (unless (eq (car-safe context) 'epg-context)
283 (signal 'wrong-type-argument (list 'epg-context-p context)))
284 (aref (cdr context) 13))
285
286 (defun epg-context-operation (context)
287 "Return the name of the current cryptographic operation."
288 (unless (eq (car-safe context) 'epg-context)
289 (signal 'wrong-type-argument (list 'epg-context-p context)))
290 (aref (cdr context) 14))
291
292 (defun epg-context-set-protocol (context protocol)
293 "Set the protocol used within CONTEXT."
294 (unless (eq (car-safe context) 'epg-context)
295 (signal 'wrong-type-argument (list 'epg-context-p context)))
296 (aset (cdr context) 0 protocol))
297
298 (defun epg-context-set-armor (context armor)
299 "Specify if the output should be ASCII armored in CONTEXT."
300 (unless (eq (car-safe context) 'epg-context)
301 (signal 'wrong-type-argument (list 'epg-context-p context)))
302 (aset (cdr context) 1 armor))
303
304 (defun epg-context-set-textmode (context textmode)
305 "Specify if canonical text mode should be used in CONTEXT."
306 (unless (eq (car-safe context) 'epg-context)
307 (signal 'wrong-type-argument (list 'epg-context-p context)))
308 (aset (cdr context) 2 textmode))
309
310 (defun epg-context-set-include-certs (context include-certs)
311 "Set how many certificates should be included in an S/MIME signed message."
312 (unless (eq (car-safe context) 'epg-context)
313 (signal 'wrong-type-argument (list 'epg-context-p context)))
314 (aset (cdr context) 3 include-certs))
315
316 (defun epg-context-set-cipher-algorithm (context cipher-algorithm)
317 "Set the cipher algorithm in CONTEXT."
318 (unless (eq (car-safe context) 'epg-context)
319 (signal 'wrong-type-argument (list 'epg-context-p context)))
320 (aset (cdr context) 4 cipher-algorithm))
321
322 (defun epg-context-set-digest-algorithm (context digest-algorithm)
323 "Set the digest algorithm in CONTEXT."
324 (unless (eq (car-safe context) 'epg-context)
325 (signal 'wrong-type-argument (list 'epg-context-p context)))
326 (aset (cdr context) 5 digest-algorithm))
327
328 (defun epg-context-set-compress-algorithm (context compress-algorithm)
329 "Set the compress algorithm in CONTEXT."
330 (unless (eq (car-safe context) 'epg-context)
331 (signal 'wrong-type-argument (list 'epg-context-p context)))
332 (aset (cdr context) 6 compress-algorithm))
333
334 (defun epg-context-set-passphrase-callback (context
335 passphrase-callback)
336 "Set the function used to query passphrase.
337
338 PASSPHRASE-CALLBACK is either a function, or a cons-cell whose
339 car is a function and cdr is a callback data.
340
341 The function gets three arguments: the context, the key-id in
342 question, and the callback data (if any).
343
344 The callback may not be called if you use GnuPG 2.x, which relies
345 on the external program called `gpg-agent' for passphrase query.
346 If you really want to intercept passphrase query, consider
347 installing GnuPG 1.x _along with_ GnuPG 2.x, which does passphrase
348 query by itself and Emacs can intercept them."
349 (unless (eq (car-safe context) 'epg-context)
350 (signal 'wrong-type-argument (list 'epg-context-p context)))
351 (aset (cdr context) 7 (if (consp passphrase-callback)
352 passphrase-callback
353 (list passphrase-callback))))
354
355 (defun epg-context-set-progress-callback (context
356 progress-callback)
357 "Set the function which handles progress update.
358
359 PROGRESS-CALLBACK is either a function, or a cons-cell whose
360 car is a function and cdr is a callback data.
361
362 The function gets six arguments: the context, the operation
363 description, the character to display a progress unit, the
364 current amount done, the total amount to be done, and the
365 callback data (if any)."
366 (unless (eq (car-safe context) 'epg-context)
367 (signal 'wrong-type-argument (list 'epg-context-p context)))
368 (aset (cdr context) 8 (if (consp progress-callback)
369 progress-callback
370 (list progress-callback))))
371
372 (defun epg-context-set-signers (context signers)
373 "Set the list of key-id for signing."
374 (unless (eq (car-safe context) 'epg-context)
375 (signal 'wrong-type-argument (list 'epg-context-p context)))
376 (aset (cdr context) 9 signers))
377
378 (defun epg-context-set-sig-notations (context notations)
379 "Set the list of notations for signing."
380 (unless (eq (car-safe context) 'epg-context)
381 (signal 'wrong-type-argument (list 'epg-context-p context)))
382 (aset (cdr context) 10 notations))
383
384 (defun epg-context-set-process (context process)
385 "Set the process object of `epg-gpg-program'.
386 This function is for internal use only."
387 (unless (eq (car-safe context) 'epg-context)
388 (signal 'wrong-type-argument (list 'epg-context-p context)))
389 (aset (cdr context) 11 process))
390
391 (defun epg-context-set-output-file (context output-file)
392 "Set the output file of `epg-gpg-program'.
393 This function is for internal use only."
394 (unless (eq (car-safe context) 'epg-context)
395 (signal 'wrong-type-argument (list 'epg-context-p context)))
396 (aset (cdr context) 12 output-file))
397
398 (defun epg-context-set-result (context result)
399 "Set the result of the previous cryptographic operation."
400 (unless (eq (car-safe context) 'epg-context)
401 (signal 'wrong-type-argument (list 'epg-context-p context)))
402 (aset (cdr context) 13 result))
403
404 (defun epg-context-set-operation (context operation)
405 "Set the name of the current cryptographic operation."
406 (unless (eq (car-safe context) 'epg-context)
407 (signal 'wrong-type-argument (list 'epg-context-p context)))
408 (aset (cdr context) 14 operation))
409
410 (defun epg-make-signature (status &optional key-id)
411 "Return a signature object."
412 (cons 'epg-signature (vector status key-id nil nil nil nil nil nil nil nil
413 nil)))
414
415 (defun epg-signature-status (signature)
416 "Return the status code of SIGNATURE."
417 (unless (eq (car-safe signature) 'epg-signature)
418 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
419 (aref (cdr signature) 0))
420
421 (defun epg-signature-key-id (signature)
422 "Return the key-id of SIGNATURE."
423 (unless (eq (car-safe signature) 'epg-signature)
424 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
425 (aref (cdr signature) 1))
426
427 (defun epg-signature-validity (signature)
428 "Return the validity of SIGNATURE."
429 (unless (eq (car-safe signature) 'epg-signature)
430 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
431 (aref (cdr signature) 2))
432
433 (defun epg-signature-fingerprint (signature)
434 "Return the fingerprint of SIGNATURE."
435 (unless (eq (car-safe signature) 'epg-signature)
436 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
437 (aref (cdr signature) 3))
438
439 (defun epg-signature-creation-time (signature)
440 "Return the creation time of SIGNATURE."
441 (unless (eq (car-safe signature) 'epg-signature)
442 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
443 (aref (cdr signature) 4))
444
445 (defun epg-signature-expiration-time (signature)
446 "Return the expiration time of SIGNATURE."
447 (unless (eq (car-safe signature) 'epg-signature)
448 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
449 (aref (cdr signature) 5))
450
451 (defun epg-signature-pubkey-algorithm (signature)
452 "Return the public key algorithm of SIGNATURE."
453 (unless (eq (car-safe signature) 'epg-signature)
454 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
455 (aref (cdr signature) 6))
456
457 (defun epg-signature-digest-algorithm (signature)
458 "Return the digest algorithm of SIGNATURE."
459 (unless (eq (car-safe signature) 'epg-signature)
460 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
461 (aref (cdr signature) 7))
462
463 (defun epg-signature-class (signature)
464 "Return the class of SIGNATURE."
465 (unless (eq (car-safe signature) 'epg-signature)
466 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
467 (aref (cdr signature) 8))
468
469 (defun epg-signature-version (signature)
470 "Return the version of SIGNATURE."
471 (unless (eq (car-safe signature) 'epg-signature)
472 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
473 (aref (cdr signature) 9))
474
475 (defun epg-sig-notations (signature)
476 "Return the list of notations of SIGNATURE."
477 (unless (eq (car-safe signature) 'epg-signature)
478 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
479 (aref (cdr signature) 10))
480
481 (defun epg-signature-set-status (signature status)
482 "Set the status code of SIGNATURE."
483 (unless (eq (car-safe signature) 'epg-signature)
484 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
485 (aset (cdr signature) 0 status))
486
487 (defun epg-signature-set-key-id (signature key-id)
488 "Set the key-id of SIGNATURE."
489 (unless (eq (car-safe signature) 'epg-signature)
490 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
491 (aset (cdr signature) 1 key-id))
492
493 (defun epg-signature-set-validity (signature validity)
494 "Set the validity of SIGNATURE."
495 (unless (eq (car-safe signature) 'epg-signature)
496 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
497 (aset (cdr signature) 2 validity))
498
499 (defun epg-signature-set-fingerprint (signature fingerprint)
500 "Set the fingerprint of SIGNATURE."
501 (unless (eq (car-safe signature) 'epg-signature)
502 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
503 (aset (cdr signature) 3 fingerprint))
504
505 (defun epg-signature-set-creation-time (signature creation-time)
506 "Set the creation time of SIGNATURE."
507 (unless (eq (car-safe signature) 'epg-signature)
508 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
509 (aset (cdr signature) 4 creation-time))
510
511 (defun epg-signature-set-expiration-time (signature expiration-time)
512 "Set the expiration time of SIGNATURE."
513 (unless (eq (car-safe signature) 'epg-signature)
514 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
515 (aset (cdr signature) 5 expiration-time))
516
517 (defun epg-signature-set-pubkey-algorithm (signature pubkey-algorithm)
518 "Set the public key algorithm of SIGNATURE."
519 (unless (eq (car-safe signature) 'epg-signature)
520 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
521 (aset (cdr signature) 6 pubkey-algorithm))
522
523 (defun epg-signature-set-digest-algorithm (signature digest-algorithm)
524 "Set the digest algorithm of SIGNATURE."
525 (unless (eq (car-safe signature) 'epg-signature)
526 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
527 (aset (cdr signature) 7 digest-algorithm))
528
529 (defun epg-signature-set-class (signature class)
530 "Set the class of SIGNATURE."
531 (unless (eq (car-safe signature) 'epg-signature)
532 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
533 (aset (cdr signature) 8 class))
534
535 (defun epg-signature-set-version (signature version)
536 "Set the version of SIGNATURE."
537 (unless (eq (car-safe signature) 'epg-signature)
538 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
539 (aset (cdr signature) 9 version))
540
541 (defun epg-signature-set-notations (signature notations)
542 "Set the list of notations of SIGNATURE."
543 (unless (eq (car-safe signature) 'epg-signature)
544 (signal 'wrong-type-argument (list 'epg-signature-p signature)))
545 (aset (cdr signature) 10 notations))
546
547 (defun epg-make-new-signature (type pubkey-algorithm digest-algorithm
548 class creation-time fingerprint)
549 "Return a new signature object."
550 (cons 'epg-new-signature (vector type pubkey-algorithm digest-algorithm
551 class creation-time fingerprint)))
552
553 (defun epg-new-signature-type (new-signature)
554 "Return the type of NEW-SIGNATURE."
555 (unless (eq (car-safe new-signature) 'epg-new-signature)
556 (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
557 (aref (cdr new-signature) 0))
558
559 (defun epg-new-signature-pubkey-algorithm (new-signature)
560 "Return the public key algorithm of NEW-SIGNATURE."
561 (unless (eq (car-safe new-signature) 'epg-new-signature)
562 (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
563 (aref (cdr new-signature) 1))
564
565 (defun epg-new-signature-digest-algorithm (new-signature)
566 "Return the digest algorithm of NEW-SIGNATURE."
567 (unless (eq (car-safe new-signature) 'epg-new-signature)
568 (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
569 (aref (cdr new-signature) 2))
570
571 (defun epg-new-signature-class (new-signature)
572 "Return the class of NEW-SIGNATURE."
573 (unless (eq (car-safe new-signature) 'epg-new-signature)
574 (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
575 (aref (cdr new-signature) 3))
576
577 (defun epg-new-signature-creation-time (new-signature)
578 "Return the creation time of NEW-SIGNATURE."
579 (unless (eq (car-safe new-signature) 'epg-new-signature)
580 (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
581 (aref (cdr new-signature) 4))
582
583 (defun epg-new-signature-fingerprint (new-signature)
584 "Return the fingerprint of NEW-SIGNATURE."
585 (unless (eq (car-safe new-signature) 'epg-new-signature)
586 (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
587 (aref (cdr new-signature) 5))
588
589 (defun epg-make-key (owner-trust)
590 "Return a key object."
591 (cons 'epg-key (vector owner-trust nil nil)))
592
593 (defun epg-key-owner-trust (key)
594 "Return the owner trust of KEY."
595 (unless (eq (car-safe key) 'epg-key)
596 (signal 'wrong-type-argument (list 'epg-key-p key)))
597 (aref (cdr key) 0))
598
599 (defun epg-key-sub-key-list (key)
600 "Return the sub key list of KEY."
601 (unless (eq (car-safe key) 'epg-key)
602 (signal 'wrong-type-argument (list 'epg-key-p key)))
603 (aref (cdr key) 1))
604
605 (defun epg-key-user-id-list (key)
606 "Return the user ID list of KEY."
607 (unless (eq (car-safe key) 'epg-key)
608 (signal 'wrong-type-argument (list 'epg-key-p key)))
609 (aref (cdr key) 2))
610
611 (defun epg-key-set-sub-key-list (key sub-key-list)
612 "Set the sub key list of KEY."
613 (unless (eq (car-safe key) 'epg-key)
614 (signal 'wrong-type-argument (list 'epg-key-p key)))
615 (aset (cdr key) 1 sub-key-list))
616
617 (defun epg-key-set-user-id-list (key user-id-list)
618 "Set the user ID list of KEY."
619 (unless (eq (car-safe key) 'epg-key)
620 (signal 'wrong-type-argument (list 'epg-key-p key)))
621 (aset (cdr key) 2 user-id-list))
622
623 (defun epg-make-sub-key (validity capability secret-p algorithm length id
624 creation-time expiration-time)
625 "Return a sub key object."
626 (cons 'epg-sub-key
627 (vector validity capability secret-p algorithm length id creation-time
628 expiration-time nil)))
629
630 (defun epg-sub-key-validity (sub-key)
631 "Return the validity of SUB-KEY."
632 (unless (eq (car-safe sub-key) 'epg-sub-key)
633 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
634 (aref (cdr sub-key) 0))
635
636 (defun epg-sub-key-capability (sub-key)
637 "Return the capability of SUB-KEY."
638 (unless (eq (car-safe sub-key) 'epg-sub-key)
639 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
640 (aref (cdr sub-key) 1))
641
642 (defun epg-sub-key-secret-p (sub-key)
643 "Return non-nil if SUB-KEY is a secret key."
644 (unless (eq (car-safe sub-key) 'epg-sub-key)
645 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
646 (aref (cdr sub-key) 2))
647
648 (defun epg-sub-key-algorithm (sub-key)
649 "Return the algorithm of SUB-KEY."
650 (unless (eq (car-safe sub-key) 'epg-sub-key)
651 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
652 (aref (cdr sub-key) 3))
653
654 (defun epg-sub-key-length (sub-key)
655 "Return the length of SUB-KEY."
656 (unless (eq (car-safe sub-key) 'epg-sub-key)
657 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
658 (aref (cdr sub-key) 4))
659
660 (defun epg-sub-key-id (sub-key)
661 "Return the ID of SUB-KEY."
662 (unless (eq (car-safe sub-key) 'epg-sub-key)
663 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
664 (aref (cdr sub-key) 5))
665
666 (defun epg-sub-key-creation-time (sub-key)
667 "Return the creation time of SUB-KEY."
668 (unless (eq (car-safe sub-key) 'epg-sub-key)
669 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
670 (aref (cdr sub-key) 6))
671
672 (defun epg-sub-key-expiration-time (sub-key)
673 "Return the expiration time of SUB-KEY."
674 (unless (eq (car-safe sub-key) 'epg-sub-key)
675 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
676 (aref (cdr sub-key) 7))
677
678 (defun epg-sub-key-fingerprint (sub-key)
679 "Return the fingerprint of SUB-KEY."
680 (unless (eq (car-safe sub-key) 'epg-sub-key)
681 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
682 (aref (cdr sub-key) 8))
683
684 (defun epg-sub-key-set-fingerprint (sub-key fingerprint)
685 "Set the fingerprint of SUB-KEY.
686 This function is for internal use only."
687 (unless (eq (car-safe sub-key) 'epg-sub-key)
688 (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
689 (aset (cdr sub-key) 8 fingerprint))
690
691 (defun epg-make-user-id (validity string)
692 "Return a user ID object."
693 (cons 'epg-user-id (vector validity string nil)))
694
695 (defun epg-user-id-validity (user-id)
696 "Return the validity of USER-ID."
697 (unless (eq (car-safe user-id) 'epg-user-id)
698 (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
699 (aref (cdr user-id) 0))
700
701 (defun epg-user-id-string (user-id)
702 "Return the name of USER-ID."
703 (unless (eq (car-safe user-id) 'epg-user-id)
704 (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
705 (aref (cdr user-id) 1))
706
707 (defun epg-user-id-signature-list (user-id)
708 "Return the signature list of USER-ID."
709 (unless (eq (car-safe user-id) 'epg-user-id)
710 (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
711 (aref (cdr user-id) 2))
712
713 (defun epg-user-id-set-signature-list (user-id signature-list)
714 "Set the signature list of USER-ID."
715 (unless (eq (car-safe user-id) 'epg-user-id)
716 (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
717 (aset (cdr user-id) 2 signature-list))
718
719 (defun epg-make-key-signature (validity pubkey-algorithm key-id creation-time
720 expiration-time user-id class
721 exportable-p)
722 "Return a key signature object."
723 (cons 'epg-key-signature
724 (vector validity pubkey-algorithm key-id creation-time expiration-time
725 user-id class exportable-p)))
726
727 (defun epg-key-signature-validity (key-signature)
728 "Return the validity of KEY-SIGNATURE."
729 (unless (eq (car-safe key-signature) 'epg-key-signature)
730 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
731 (aref (cdr key-signature) 0))
732
733 (defun epg-key-signature-pubkey-algorithm (key-signature)
734 "Return the public key algorithm of KEY-SIGNATURE."
735 (unless (eq (car-safe key-signature) 'epg-key-signature)
736 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
737 (aref (cdr key-signature) 1))
738
739 (defun epg-key-signature-key-id (key-signature)
740 "Return the key-id of KEY-SIGNATURE."
741 (unless (eq (car-safe key-signature) 'epg-key-signature)
742 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
743 (aref (cdr key-signature) 2))
744
745 (defun epg-key-signature-creation-time (key-signature)
746 "Return the creation time of KEY-SIGNATURE."
747 (unless (eq (car-safe key-signature) 'epg-key-signature)
748 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
749 (aref (cdr key-signature) 3))
750
751 (defun epg-key-signature-expiration-time (key-signature)
752 "Return the expiration time of KEY-SIGNATURE."
753 (unless (eq (car-safe key-signature) 'epg-key-signature)
754 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
755 (aref (cdr key-signature) 4))
756
757 (defun epg-key-signature-user-id (key-signature)
758 "Return the user-id of KEY-SIGNATURE."
759 (unless (eq (car-safe key-signature) 'epg-key-signature)
760 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
761 (aref (cdr key-signature) 5))
762
763 (defun epg-key-signature-class (key-signature)
764 "Return the class of KEY-SIGNATURE."
765 (unless (eq (car-safe key-signature) 'epg-key-signature)
766 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
767 (aref (cdr key-signature) 6))
768
769 (defun epg-key-signature-exportable-p (key-signature)
770 "Return t if KEY-SIGNATURE is exportable."
771 (unless (eq (car-safe key-signature) 'epg-key-signature)
772 (signal 'wrong-type-argument (list 'epg-key-signature-p key-signature)))
773 (aref (cdr key-signature) 7))
774
775 (defun epg-make-sig-notation (name value &optional human-readable
776 critical)
777 "Return a notation object."
778 (cons 'epg-sig-notation (vector name value human-readable critical)))
779
780 (defun epg-sig-notation-name (sig-notation)
781 "Return the name of SIG-NOTATION."
782 (unless (eq (car-safe sig-notation) 'epg-sig-notation)
783 (signal 'wrong-type-argument (list 'epg-sig-notation-p
784 sig-notation)))
785 (aref (cdr sig-notation) 0))
786
787 (defun epg-sig-notation-value (sig-notation)
788 "Return the value of SIG-NOTATION."
789 (unless (eq (car-safe sig-notation) 'epg-sig-notation)
790 (signal 'wrong-type-argument (list 'epg-sig-notation-p
791 sig-notation)))
792 (aref (cdr sig-notation) 1))
793
794 (defun epg-sig-notation-human-readable (sig-notation)
795 "Return the human-readable of SIG-NOTATION."
796 (unless (eq (car-safe sig-notation) 'epg-sig-notation)
797 (signal 'wrong-type-argument (list 'epg-sig-notation-p
798 sig-notation)))
799 (aref (cdr sig-notation) 2))
800
801 (defun epg-sig-notation-critical (sig-notation)
802 "Return the critical of SIG-NOTATION."
803 (unless (eq (car-safe sig-notation) 'epg-sig-notation)
804 (signal 'wrong-type-argument (list 'epg-sig-notation-p
805 sig-notation)))
806 (aref (cdr sig-notation) 3))
807
808 (defun epg-sig-notation-set-value (sig-notation value)
809 "Set the value of SIG-NOTATION."
810 (unless (eq (car-safe sig-notation) 'epg-sig-notation)
811 (signal 'wrong-type-argument (list 'epg-sig-notation-p
812 sig-notation)))
813 (aset (cdr sig-notation) 1 value))
814
815 (defun epg-make-import-status (fingerprint &optional reason new user-id
816 signature sub-key secret)
817 "Return an import status object."
818 (cons 'epg-import-status (vector fingerprint reason new user-id signature
819 sub-key secret)))
820
821 (defun epg-import-status-fingerprint (import-status)
822 "Return the fingerprint of the key that was considered."
823 (unless (eq (car-safe import-status) 'epg-import-status)
824 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
825 (aref (cdr import-status) 0))
826
827 (defun epg-import-status-reason (import-status)
828 "Return the reason code for import failure."
829 (unless (eq (car-safe import-status) 'epg-import-status)
830 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
831 (aref (cdr import-status) 1))
832
833 (defun epg-import-status-new (import-status)
834 "Return t if the imported key was new."
835 (unless (eq (car-safe import-status) 'epg-import-status)
836 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
837 (aref (cdr import-status) 2))
838
839 (defun epg-import-status-user-id (import-status)
840 "Return t if the imported key contained new user IDs."
841 (unless (eq (car-safe import-status) 'epg-import-status)
842 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
843 (aref (cdr import-status) 3))
844
845 (defun epg-import-status-signature (import-status)
846 "Return t if the imported key contained new signatures."
847 (unless (eq (car-safe import-status) 'epg-import-status)
848 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
849 (aref (cdr import-status) 4))
850
851 (defun epg-import-status-sub-key (import-status)
852 "Return t if the imported key contained new sub keys."
853 (unless (eq (car-safe import-status) 'epg-import-status)
854 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
855 (aref (cdr import-status) 5))
856
857 (defun epg-import-status-secret (import-status)
858 "Return t if the imported key contained a secret key."
859 (unless (eq (car-safe import-status) 'epg-import-status)
860 (signal 'wrong-type-argument (list 'epg-import-status-p import-status)))
861 (aref (cdr import-status) 6))
862
863 (defun epg-make-import-result (considered no-user-id imported imported-rsa
864 unchanged new-user-ids new-sub-keys
865 new-signatures new-revocations
866 secret-read secret-imported
867 secret-unchanged not-imported
868 imports)
869 "Return an import result object."
870 (cons 'epg-import-result (vector considered no-user-id imported imported-rsa
871 unchanged new-user-ids new-sub-keys
872 new-signatures new-revocations secret-read
873 secret-imported secret-unchanged
874 not-imported imports)))
875
876 (defun epg-import-result-considered (import-result)
877 "Return the total number of considered keys."
878 (unless (eq (car-safe import-result) 'epg-import-result)
879 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
880 (aref (cdr import-result) 0))
881
882 (defun epg-import-result-no-user-id (import-result)
883 "Return the number of keys without user ID."
884 (unless (eq (car-safe import-result) 'epg-import-result)
885 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
886 (aref (cdr import-result) 1))
887
888 (defun epg-import-result-imported (import-result)
889 "Return the number of imported keys."
890 (unless (eq (car-safe import-result) 'epg-import-result)
891 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
892 (aref (cdr import-result) 2))
893
894 (defun epg-import-result-imported-rsa (import-result)
895 "Return the number of imported RSA keys."
896 (unless (eq (car-safe import-result) 'epg-import-result)
897 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
898 (aref (cdr import-result) 3))
899
900 (defun epg-import-result-unchanged (import-result)
901 "Return the number of unchanged keys."
902 (unless (eq (car-safe import-result) 'epg-import-result)
903 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
904 (aref (cdr import-result) 4))
905
906 (defun epg-import-result-new-user-ids (import-result)
907 "Return the number of new user IDs."
908 (unless (eq (car-safe import-result) 'epg-import-result)
909 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
910 (aref (cdr import-result) 5))
911
912 (defun epg-import-result-new-sub-keys (import-result)
913 "Return the number of new sub keys."
914 (unless (eq (car-safe import-result) 'epg-import-result)
915 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
916 (aref (cdr import-result) 6))
917
918 (defun epg-import-result-new-signatures (import-result)
919 "Return the number of new signatures."
920 (unless (eq (car-safe import-result) 'epg-import-result)
921 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
922 (aref (cdr import-result) 7))
923
924 (defun epg-import-result-new-revocations (import-result)
925 "Return the number of new revocations."
926 (unless (eq (car-safe import-result) 'epg-import-result)
927 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
928 (aref (cdr import-result) 8))
929
930 (defun epg-import-result-secret-read (import-result)
931 "Return the total number of secret keys read."
932 (unless (eq (car-safe import-result) 'epg-import-result)
933 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
934 (aref (cdr import-result) 9))
935
936 (defun epg-import-result-secret-imported (import-result)
937 "Return the number of imported secret keys."
938 (unless (eq (car-safe import-result) 'epg-import-result)
939 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
940 (aref (cdr import-result) 10))
941
942 (defun epg-import-result-secret-unchanged (import-result)
943 "Return the number of unchanged secret keys."
944 (unless (eq (car-safe import-result) 'epg-import-result)
945 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
946 (aref (cdr import-result) 11))
947
948 (defun epg-import-result-not-imported (import-result)
949 "Return the number of keys not imported."
950 (unless (eq (car-safe import-result) 'epg-import-result)
951 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
952 (aref (cdr import-result) 12))
953
954 (defun epg-import-result-imports (import-result)
955 "Return the list of `epg-import-status' objects."
956 (unless (eq (car-safe import-result) 'epg-import-result)
957 (signal 'wrong-type-argument (list 'epg-import-result-p import-result)))
958 (aref (cdr import-result) 13))
959
960 (defun epg-context-result-for (context name)
961 "Return the result of CONTEXT associated with NAME."
962 (cdr (assq name (epg-context-result context))))
963
964 (defun epg-context-set-result-for (context name value)
965 "Set the result of CONTEXT associated with NAME to VALUE."
966 (let* ((result (epg-context-result context))
967 (entry (assq name result)))
968 (if entry
969 (setcdr entry value)
970 (epg-context-set-result context (cons (cons name value) result)))))
971
972 (defun epg-signature-to-string (signature)
973 "Convert SIGNATURE to a human readable string."
974 (let* ((user-id (cdr (assoc (epg-signature-key-id signature)
975 epg-user-id-alist)))
976 (pubkey-algorithm (epg-signature-pubkey-algorithm signature))
977 (key-id (epg-signature-key-id signature)))
978 (concat
979 (cond ((eq (epg-signature-status signature) 'good)
980 "Good signature from ")
981 ((eq (epg-signature-status signature) 'bad)
982 "Bad signature from ")
983 ((eq (epg-signature-status signature) 'expired)
984 "Expired signature from ")
985 ((eq (epg-signature-status signature) 'expired-key)
986 "Signature made by expired key ")
987 ((eq (epg-signature-status signature) 'revoked-key)
988 "Signature made by revoked key ")
989 ((eq (epg-signature-status signature) 'no-pubkey)
990 "No public key for "))
991 key-id
992 (if user-id
993 (concat " "
994 (if (stringp user-id)
995 user-id
996 (epg-decode-dn user-id)))
997 "")
998 (if (epg-signature-validity signature)
999 (format " (trust %s)" (epg-signature-validity signature))
1000 "")
1001 (if (epg-signature-creation-time signature)
1002 (format-time-string " created at %Y-%m-%dT%T%z"
1003 (epg-signature-creation-time signature))
1004 "")
1005 (if pubkey-algorithm
1006 (concat " using "
1007 (or (cdr (assq pubkey-algorithm epg-pubkey-algorithm-alist))
1008 (format "(unknown algorithm %d)" pubkey-algorithm)))
1009 ""))))
1010
1011 (defun epg-verify-result-to-string (verify-result)
1012 "Convert VERIFY-RESULT to a human readable string."
1013 (mapconcat #'epg-signature-to-string verify-result "\n"))
1014
1015 (defun epg-new-signature-to-string (new-signature)
1016 "Convert NEW-SIGNATURE to a human readable string."
1017 (concat
1018 (cond ((eq (epg-new-signature-type new-signature) 'detached)
1019 "Detached signature ")
1020 ((eq (epg-new-signature-type new-signature) 'clear)
1021 "Cleartext signature ")
1022 (t
1023 "Signature "))
1024 (cdr (assq (epg-new-signature-pubkey-algorithm new-signature)
1025 epg-pubkey-algorithm-alist))
1026 "/"
1027 (cdr (assq (epg-new-signature-digest-algorithm new-signature)
1028 epg-digest-algorithm-alist))
1029 " "
1030 (format "%02X " (epg-new-signature-class new-signature))
1031 (epg-new-signature-fingerprint new-signature)))
1032
1033 (defun epg-import-result-to-string (import-result)
1034 "Convert IMPORT-RESULT to a human readable string."
1035 (concat (format "Total number processed: %d\n"
1036 (epg-import-result-considered import-result))
1037 (if (> (epg-import-result-not-imported import-result) 0)
1038 (format " skipped new keys: %d\n"
1039 (epg-import-result-not-imported import-result)))
1040 (if (> (epg-import-result-no-user-id import-result) 0)
1041 (format " w/o user IDs: %d\n"
1042 (epg-import-result-no-user-id import-result)))
1043 (if (> (epg-import-result-imported import-result) 0)
1044 (concat (format " imported: %d"
1045 (epg-import-result-imported import-result))
1046 (if (> (epg-import-result-imported-rsa import-result) 0)
1047 (format " (RSA: %d)"
1048 (epg-import-result-imported-rsa
1049 import-result)))
1050 "\n"))
1051 (if (> (epg-import-result-unchanged import-result) 0)
1052 (format " unchanged: %d\n"
1053 (epg-import-result-unchanged import-result)))
1054 (if (> (epg-import-result-new-user-ids import-result) 0)
1055 (format " new user IDs: %d\n"
1056 (epg-import-result-new-user-ids import-result)))
1057 (if (> (epg-import-result-new-sub-keys import-result) 0)
1058 (format " new subkeys: %d\n"
1059 (epg-import-result-new-sub-keys import-result)))
1060 (if (> (epg-import-result-new-signatures import-result) 0)
1061 (format " new signatures: %d\n"
1062 (epg-import-result-new-signatures import-result)))
1063 (if (> (epg-import-result-new-revocations import-result) 0)
1064 (format " new key revocations: %d\n"
1065 (epg-import-result-new-revocations import-result)))
1066 (if (> (epg-import-result-secret-read import-result) 0)
1067 (format " secret keys read: %d\n"
1068 (epg-import-result-secret-read import-result)))
1069 (if (> (epg-import-result-secret-imported import-result) 0)
1070 (format " secret keys imported: %d\n"
1071 (epg-import-result-secret-imported import-result)))
1072 (if (> (epg-import-result-secret-unchanged import-result) 0)
1073 (format " secret keys unchanged: %d\n"
1074 (epg-import-result-secret-unchanged import-result)))))
1075
1076 (defun epg-error-to-string (error)
1077 (cond
1078 ((eq (car error) 'exit)
1079 "Exit")
1080 ((eq (car error) 'quit)
1081 "Cancelled")
1082 ((eq (car error) 'no-data)
1083 (let ((entry (assq (cdr error) epg-no-data-reason-alist)))
1084 (if entry
1085 (format "No data (%s)" (downcase (cdr entry)))
1086 "No data")))
1087 ((eq (car error) 'unexpected)
1088 (let ((entry (assq (cdr error) epg-unexpected-reason-alist)))
1089 (if entry
1090 (format "Unexpected (%s)" (downcase (cdr entry)))
1091 "Unexpected")))
1092 ((eq (car error) 'bad-armor)
1093 "Bad armor")
1094 ((memq (car error) '(invalid-recipient invalid-signer))
1095 (concat
1096 (if (eq (car error) 'invalid-recipient)
1097 "Unusable public key"
1098 "Unusable secret key")
1099 (let ((entry (assq 'requested (cdr error))))
1100 (if entry
1101 (format ": %s" (cdr entry))
1102 ": <unknown>"))
1103 (let ((entry (assq 'reason (cdr error))))
1104 (if (and entry
1105 (> (cdr entry) 0) ;no specific reason given
1106 (setq entry (assq (cdr entry)
1107 epg-invalid-recipients-reason-alist)))
1108 (format " (%s)" (downcase (cdr entry)))
1109 ""))))
1110 ((eq (car error) 'no-pubkey)
1111 (format "No public key: %s" (cdr error)))
1112 ((eq (car error) 'no-seckey)
1113 (format "No secret key: %s" (cdr error)))
1114 ((eq (car error) 'no-recipients)
1115 "No recipients")
1116 ((eq (car error) 'no-signers)
1117 "No signers")
1118 ((eq (car error) 'delete-problem)
1119 (let ((entry (assq (cdr error) epg-delete-problem-reason-alist)))
1120 (if entry
1121 (format "Delete problem (%s)" (downcase (cdr entry)))
1122 "Delete problem")))
1123 ((eq (car error) 'key-not-created)
1124 "Key not created")))
1125
1126 (defun epg-errors-to-string (errors)
1127 (mapconcat #'epg-error-to-string errors "; "))
1128
1129 (defun epg--start (context args)
1130 "Start `epg-gpg-program' in a subprocess with given ARGS."
1131 (if (and (epg-context-process context)
1132 (eq (process-status (epg-context-process context)) 'run))
1133 (error "%s is already running in this context"
1134 (if (eq (epg-context-protocol context) 'CMS)
1135 epg-gpgsm-program
1136 epg-gpg-program)))
1137 (let* ((agent-info (getenv "GPG_AGENT_INFO"))
1138 (args (append (list "--no-tty"
1139 "--status-fd" "1"
1140 "--yes")
1141 (if (and (not (eq (epg-context-protocol context) 'CMS))
1142 (string-match ":" (or agent-info "")))
1143 '("--use-agent"))
1144 (if (and (not (eq (epg-context-protocol context) 'CMS))
1145 (epg-context-progress-callback context))
1146 '("--enable-progress-filter"))
1147 (if epg-gpg-home-directory
1148 (list "--homedir" epg-gpg-home-directory))
1149 (unless (eq (epg-context-protocol context) 'CMS)
1150 '("--command-fd" "0"))
1151 (if (epg-context-armor context) '("--armor"))
1152 (if (epg-context-textmode context) '("--textmode"))
1153 (if (epg-context-output-file context)
1154 (list "--output" (epg-context-output-file context)))
1155 args))
1156 (coding-system-for-write 'binary)
1157 (coding-system-for-read 'binary)
1158 process-connection-type
1159 (orig-mode (default-file-modes))
1160 (buffer (generate-new-buffer " *epg*"))
1161 process
1162 terminal-name
1163 agent-file
1164 (agent-mtime '(0 0 0 0)))
1165 ;; Set GPG_TTY and TERM for pinentry-curses. Note that we can't
1166 ;; use `terminal-name' here to get the real pty name for the child
1167 ;; process, though /dev/fd/0" is not portable.
1168 (with-temp-buffer
1169 (when (= (call-process "tty" "/dev/fd/0" t) 0)
1170 (delete-backward-char 1)
1171 (setq terminal-name (buffer-string))))
1172 (when terminal-name
1173 (setenv "GPG_TTY" terminal-name)
1174 (setenv "TERM" "xterm"))
1175 ;; Record modified time of gpg-agent socket to restore the Emacs
1176 ;; frame on text terminal in `epg-wait-for-completion'.
1177 ;; See
1178 ;; <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>
1179 ;; for more details.
1180 (when (and agent-info (string-match "\\(.*\\):[0-9]+:[0-9]+" agent-info))
1181 (setq agent-file (match-string 1 agent-info)
1182 agent-mtime (or (nth 5 (file-attributes agent-file)) '(0 0 0 0))))
1183 (if epg-debug
1184 (save-excursion
1185 (unless epg-debug-buffer
1186 (setq epg-debug-buffer (generate-new-buffer " *epg-debug*")))
1187 (set-buffer epg-debug-buffer)
1188 (goto-char (point-max))
1189 (insert (if agent-info
1190 (format "GPG_AGENT_INFO=%s\n" agent-info)
1191 "GPG_AGENT_INFO is not set\n")
1192 (format "%s %s\n"
1193 (if (eq (epg-context-protocol context) 'CMS)
1194 epg-gpgsm-program
1195 epg-gpg-program)
1196 (mapconcat #'identity args " ")))))
1197 (with-current-buffer buffer
1198 (if (fboundp 'set-buffer-multibyte)
1199 (set-buffer-multibyte nil))
1200 (make-local-variable 'epg-last-status)
1201 (setq epg-last-status nil)
1202 (make-local-variable 'epg-read-point)
1203 (setq epg-read-point (point-min))
1204 (make-local-variable 'epg-process-filter-running)
1205 (setq epg-process-filter-running nil)
1206 (make-local-variable 'epg-pending-status-list)
1207 (setq epg-pending-status-list nil)
1208 (make-local-variable 'epg-key-id)
1209 (setq epg-key-id nil)
1210 (make-local-variable 'epg-context)
1211 (setq epg-context context)
1212 (make-local-variable 'epg-agent-file)
1213 (setq epg-agent-file agent-file)
1214 (make-local-variable 'epg-agent-mtime)
1215 (setq epg-agent-mtime agent-mtime))
1216 (unwind-protect
1217 (progn
1218 (set-default-file-modes 448)
1219 (setq process
1220 (apply #'start-process "epg" buffer
1221 (if (eq (epg-context-protocol context) 'CMS)
1222 epg-gpgsm-program
1223 epg-gpg-program)
1224 args)))
1225 (set-default-file-modes orig-mode))
1226 (set-process-filter process #'epg--process-filter)
1227 (epg-context-set-process context process)))
1228
1229 (defun epg--process-filter (process input)
1230 (if epg-debug
1231 (save-excursion
1232 (unless epg-debug-buffer
1233 (setq epg-debug-buffer (generate-new-buffer " *epg-debug*")))
1234 (set-buffer epg-debug-buffer)
1235 (goto-char (point-max))
1236 (insert input)))
1237 (if (buffer-live-p (process-buffer process))
1238 (with-current-buffer (process-buffer process)
1239 (goto-char (point-max))
1240 (insert input)
1241 (unless epg-process-filter-running
1242 (unwind-protect
1243 (progn
1244 (setq epg-process-filter-running t)
1245 (goto-char epg-read-point)
1246 (beginning-of-line)
1247 (while (looking-at ".*\n") ;the input line finished
1248 (if (looking-at "\\[GNUPG:] \\([A-Z_]+\\) ?\\(.*\\)")
1249 (let* ((status (match-string 1))
1250 (string (match-string 2))
1251 (symbol (intern-soft (concat "epg--status-"
1252 status))))
1253 (if (member status epg-pending-status-list)
1254 (setq epg-pending-status-list nil))
1255 (if (and symbol
1256 (fboundp symbol))
1257 (funcall symbol epg-context string))
1258 (setq epg-last-status (cons status string))))
1259 (forward-line)
1260 (setq epg-read-point (point))))
1261 (setq epg-process-filter-running nil))))))
1262
1263 (defun epg-read-output (context)
1264 "Read the output file CONTEXT and return the content as a string."
1265 (with-temp-buffer
1266 (if (fboundp 'set-buffer-multibyte)
1267 (set-buffer-multibyte nil))
1268 (if (file-exists-p (epg-context-output-file context))
1269 (let ((coding-system-for-read 'binary))
1270 (insert-file-contents (epg-context-output-file context))
1271 (buffer-string)))))
1272
1273 (defun epg-wait-for-status (context status-list)
1274 "Wait until one of elements in STATUS-LIST arrives."
1275 (with-current-buffer (process-buffer (epg-context-process context))
1276 (setq epg-pending-status-list status-list)
1277 (while (and (eq (process-status (epg-context-process context)) 'run)
1278 epg-pending-status-list)
1279 (accept-process-output (epg-context-process context) 1))
1280 (if epg-pending-status-list
1281 (epg-context-set-result-for
1282 context 'error
1283 (cons '(exit)
1284 (epg-context-result-for context 'error))))))
1285
1286 (defun epg-wait-for-completion (context)
1287 "Wait until the `epg-gpg-program' process completes."
1288 (while (eq (process-status (epg-context-process context)) 'run)
1289 (accept-process-output (epg-context-process context) 1))
1290 ;; This line is needed to run the process-filter right now.
1291 (sleep-for 0.1)
1292 ;; Restore Emacs frame on text terminal, when pinentry-curses has terminated.
1293 (if (with-current-buffer (process-buffer (epg-context-process context))
1294 (and epg-agent-file
1295 (> (float-time (or (nth 5 (file-attributes epg-agent-file))
1296 '(0 0 0 0)))
1297 (float-time epg-agent-mtime))))
1298 (redraw-frame))
1299 (epg-context-set-result-for
1300 context 'error
1301 (nreverse (epg-context-result-for context 'error))))
1302
1303 (defun epg-reset (context)
1304 "Reset the CONTEXT."
1305 (if (and (epg-context-process context)
1306 (buffer-live-p (process-buffer (epg-context-process context))))
1307 (kill-buffer (process-buffer (epg-context-process context))))
1308 (epg-context-set-process context nil))
1309
1310 (defun epg-delete-output-file (context)
1311 "Delete the output file of CONTEXT."
1312 (if (and (epg-context-output-file context)
1313 (file-exists-p (epg-context-output-file context)))
1314 (delete-file (epg-context-output-file context))))
1315
1316 (eval-and-compile
1317 (if (fboundp 'decode-coding-string)
1318 (defalias 'epg--decode-coding-string 'decode-coding-string)
1319 (defalias 'epg--decode-coding-string 'identity)))
1320
1321 (defun epg--status-USERID_HINT (_context string)
1322 (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
1323 (let* ((key-id (match-string 1 string))
1324 (user-id (match-string 2 string))
1325 (entry (assoc key-id epg-user-id-alist)))
1326 (condition-case nil
1327 (setq user-id (epg--decode-coding-string
1328 (epg--decode-percent-escape user-id)
1329 'utf-8))
1330 (error))
1331 (if entry
1332 (setcdr entry user-id)
1333 (setq epg-user-id-alist (cons (cons key-id user-id)
1334 epg-user-id-alist))))))
1335
1336 (defun epg--status-NEED_PASSPHRASE (_context string)
1337 (if (string-match "\\`\\([^ ]+\\)" string)
1338 (setq epg-key-id (match-string 1 string))))
1339
1340 (defun epg--status-NEED_PASSPHRASE_SYM (_context _string)
1341 (setq epg-key-id 'SYM))
1342
1343 (defun epg--status-NEED_PASSPHRASE_PIN (_context _string)
1344 (setq epg-key-id 'PIN))
1345
1346 (eval-and-compile
1347 (if (fboundp 'clear-string)
1348 (defalias 'epg--clear-string 'clear-string)
1349 (defun epg--clear-string (string)
1350 (fillarray string 0))))
1351
1352 (eval-and-compile
1353 (if (fboundp 'encode-coding-string)
1354 (defalias 'epg--encode-coding-string 'encode-coding-string)
1355 (defalias 'epg--encode-coding-string 'identity)))
1356
1357 (defun epg--status-GET_HIDDEN (context string)
1358 (when (and epg-key-id
1359 (string-match "\\`passphrase\\." string))
1360 (unless (epg-context-passphrase-callback context)
1361 (error "passphrase-callback not set"))
1362 (let (inhibit-quit
1363 passphrase
1364 passphrase-with-new-line
1365 encoded-passphrase-with-new-line)
1366 (unwind-protect
1367 (condition-case nil
1368 (progn
1369 (setq passphrase
1370 (funcall
1371 (car (epg-context-passphrase-callback context))
1372 context
1373 epg-key-id
1374 (cdr (epg-context-passphrase-callback context))))
1375 (when passphrase
1376 (setq passphrase-with-new-line (concat passphrase "\n"))
1377 (epg--clear-string passphrase)
1378 (setq passphrase nil)
1379 (if epg-passphrase-coding-system
1380 (progn
1381 (setq encoded-passphrase-with-new-line
1382 (epg--encode-coding-string
1383 passphrase-with-new-line
1384 (coding-system-change-eol-conversion
1385 epg-passphrase-coding-system 'unix)))
1386 (epg--clear-string passphrase-with-new-line)
1387 (setq passphrase-with-new-line nil))
1388 (setq encoded-passphrase-with-new-line
1389 passphrase-with-new-line
1390 passphrase-with-new-line nil))
1391 (process-send-string (epg-context-process context)
1392 encoded-passphrase-with-new-line)))
1393 (quit
1394 (epg-context-set-result-for
1395 context 'error
1396 (cons '(quit)
1397 (epg-context-result-for context 'error)))
1398 (delete-process (epg-context-process context))))
1399 (if passphrase
1400 (epg--clear-string passphrase))
1401 (if passphrase-with-new-line
1402 (epg--clear-string passphrase-with-new-line))
1403 (if encoded-passphrase-with-new-line
1404 (epg--clear-string encoded-passphrase-with-new-line))))))
1405
1406 (defun epg--prompt-GET_BOOL (_context string)
1407 (let ((entry (assoc string epg-prompt-alist)))
1408 (y-or-n-p (if entry (cdr entry) (concat string "? ")))))
1409
1410 (defun epg--prompt-GET_BOOL-untrusted_key.override (_context _string)
1411 (y-or-n-p (if (and (equal (car epg-last-status) "USERID_HINT")
1412 (string-match "\\`\\([^ ]+\\) \\(.*\\)"
1413 (cdr epg-last-status)))
1414 (let* ((key-id (match-string 1 (cdr epg-last-status)))
1415 (user-id (match-string 2 (cdr epg-last-status)))
1416 (entry (assoc key-id epg-user-id-alist)))
1417 (if entry
1418 (setq user-id (cdr entry)))
1419 (format "Untrusted key %s %s. Use anyway? " key-id user-id))
1420 "Use untrusted key anyway? ")))
1421
1422 (defun epg--status-GET_BOOL (context string)
1423 (let (inhibit-quit)
1424 (condition-case nil
1425 (if (funcall (or (intern-soft (concat "epg--prompt-GET_BOOL-" string))
1426 #'epg--prompt-GET_BOOL)
1427 context string)
1428 (process-send-string (epg-context-process context) "y\n")
1429 (process-send-string (epg-context-process context) "n\n"))
1430 (quit
1431 (epg-context-set-result-for
1432 context 'error
1433 (cons '(quit)
1434 (epg-context-result-for context 'error)))
1435 (delete-process (epg-context-process context))))))
1436
1437 (defun epg--status-GET_LINE (context string)
1438 (let ((entry (assoc string epg-prompt-alist))
1439 inhibit-quit)
1440 (condition-case nil
1441 (process-send-string (epg-context-process context)
1442 (concat (read-string
1443 (if entry
1444 (cdr entry)
1445 (concat string ": ")))
1446 "\n"))
1447 (quit
1448 (epg-context-set-result-for
1449 context 'error
1450 (cons '(quit)
1451 (epg-context-result-for context 'error)))
1452 (delete-process (epg-context-process context))))))
1453
1454 (defun epg--status-*SIG (context status string)
1455 (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
1456 (let* ((key-id (match-string 1 string))
1457 (user-id (match-string 2 string))
1458 (entry (assoc key-id epg-user-id-alist)))
1459 (epg-context-set-result-for
1460 context
1461 'verify
1462 (cons (epg-make-signature status key-id)
1463 (epg-context-result-for context 'verify)))
1464 (condition-case nil
1465 (if (eq (epg-context-protocol context) 'CMS)
1466 (setq user-id (epg-dn-from-string user-id))
1467 (setq user-id (epg--decode-coding-string
1468 (epg--decode-percent-escape user-id)
1469 'utf-8)))
1470 (error))
1471 (if entry
1472 (setcdr entry user-id)
1473 (setq epg-user-id-alist
1474 (cons (cons key-id user-id) epg-user-id-alist))))
1475 (epg-context-set-result-for
1476 context
1477 'verify
1478 (cons (epg-make-signature status)
1479 (epg-context-result-for context 'verify)))))
1480
1481 (defun epg--status-GOODSIG (context string)
1482 (epg--status-*SIG context 'good string))
1483
1484 (defun epg--status-EXPSIG (context string)
1485 (epg--status-*SIG context 'expired string))
1486
1487 (defun epg--status-EXPKEYSIG (context string)
1488 (epg--status-*SIG context 'expired-key string))
1489
1490 (defun epg--status-REVKEYSIG (context string)
1491 (epg--status-*SIG context 'revoked-key string))
1492
1493 (defun epg--status-BADSIG (context string)
1494 (epg--status-*SIG context 'bad string))
1495
1496 (defun epg--status-NO_PUBKEY (context string)
1497 (if (eq (epg-context-operation context) 'verify)
1498 (let ((signature (car (epg-context-result-for context 'verify))))
1499 (if (and signature
1500 (eq (epg-signature-status signature) 'error)
1501 (equal (epg-signature-key-id signature) string))
1502 (epg-signature-set-status signature 'no-pubkey)))
1503 (epg-context-set-result-for
1504 context 'error
1505 (cons (cons 'no-pubkey string)
1506 (epg-context-result-for context 'error)))))
1507
1508 (defun epg--status-NO_SECKEY (context string)
1509 (epg-context-set-result-for
1510 context 'error
1511 (cons (cons 'no-seckey string)
1512 (epg-context-result-for context 'error))))
1513
1514 (defun epg--time-from-seconds (seconds)
1515 (let ((number-seconds (string-to-number (concat seconds ".0"))))
1516 (cons (floor (/ number-seconds 65536))
1517 (floor (mod number-seconds 65536)))))
1518
1519 (defun epg--status-ERRSIG (context string)
1520 (if (string-match "\\`\\([^ ]+\\) \\([0-9]+\\) \\([0-9]+\\) \
1521 \\([0-9A-Fa-f][0-9A-Fa-f]\\) \\([^ ]+\\) \\([0-9]+\\)"
1522 string)
1523 (let ((signature (epg-make-signature 'error)))
1524 (epg-context-set-result-for
1525 context
1526 'verify
1527 (cons signature
1528 (epg-context-result-for context 'verify)))
1529 (epg-signature-set-key-id
1530 signature
1531 (match-string 1 string))
1532 (epg-signature-set-pubkey-algorithm
1533 signature
1534 (string-to-number (match-string 2 string)))
1535 (epg-signature-set-digest-algorithm
1536 signature
1537 (string-to-number (match-string 3 string)))
1538 (epg-signature-set-class
1539 signature
1540 (string-to-number (match-string 4 string) 16))
1541 (epg-signature-set-creation-time
1542 signature
1543 (epg--time-from-seconds (match-string 5 string))))))
1544
1545 (defun epg--status-VALIDSIG (context string)
1546 (let ((signature (car (epg-context-result-for context 'verify))))
1547 (when (and signature
1548 (eq (epg-signature-status signature) 'good)
1549 (string-match "\\`\\([^ ]+\\) [^ ]+ \\([^ ]+\\) \\([^ ]+\\) \
1550 \\([0-9]+\\) [^ ]+ \\([0-9]+\\) \\([0-9]+\\) \\([0-9A-Fa-f][0-9A-Fa-f]\\) \
1551 \\(.*\\)"
1552 string))
1553 (epg-signature-set-fingerprint
1554 signature
1555 (match-string 1 string))
1556 (epg-signature-set-creation-time
1557 signature
1558 (epg--time-from-seconds (match-string 2 string)))
1559 (unless (equal (match-string 3 string) "0")
1560 (epg-signature-set-expiration-time
1561 signature
1562 (epg--time-from-seconds (match-string 3 string))))
1563 (epg-signature-set-version
1564 signature
1565 (string-to-number (match-string 4 string)))
1566 (epg-signature-set-pubkey-algorithm
1567 signature
1568 (string-to-number (match-string 5 string)))
1569 (epg-signature-set-digest-algorithm
1570 signature
1571 (string-to-number (match-string 6 string)))
1572 (epg-signature-set-class
1573 signature
1574 (string-to-number (match-string 7 string) 16)))))
1575
1576 (defun epg--status-TRUST_UNDEFINED (context _string)
1577 (let ((signature (car (epg-context-result-for context 'verify))))
1578 (if (and signature
1579 (eq (epg-signature-status signature) 'good))
1580 (epg-signature-set-validity signature 'undefined))))
1581
1582 (defun epg--status-TRUST_NEVER (context _string)
1583 (let ((signature (car (epg-context-result-for context 'verify))))
1584 (if (and signature
1585 (eq (epg-signature-status signature) 'good))
1586 (epg-signature-set-validity signature 'never))))
1587
1588 (defun epg--status-TRUST_MARGINAL (context _string)
1589 (let ((signature (car (epg-context-result-for context 'verify))))
1590 (if (and signature
1591 (eq (epg-signature-status signature) 'marginal))
1592 (epg-signature-set-validity signature 'marginal))))
1593
1594 (defun epg--status-TRUST_FULLY (context _string)
1595 (let ((signature (car (epg-context-result-for context 'verify))))
1596 (if (and signature
1597 (eq (epg-signature-status signature) 'good))
1598 (epg-signature-set-validity signature 'full))))
1599
1600 (defun epg--status-TRUST_ULTIMATE (context _string)
1601 (let ((signature (car (epg-context-result-for context 'verify))))
1602 (if (and signature
1603 (eq (epg-signature-status signature) 'good))
1604 (epg-signature-set-validity signature 'ultimate))))
1605
1606 (defun epg--status-NOTATION_NAME (context string)
1607 (let ((signature (car (epg-context-result-for context 'verify))))
1608 (if signature
1609 (epg-signature-set-notations
1610 signature
1611 (cons (epg-make-sig-notation string nil t nil)
1612 (epg-sig-notations signature))))))
1613
1614 (defun epg--status-NOTATION_DATA (context string)
1615 (let ((signature (car (epg-context-result-for context 'verify)))
1616 notation)
1617 (if (and signature
1618 (setq notation (car (epg-sig-notations signature))))
1619 (epg-sig-notation-set-value notation string))))
1620
1621 (defun epg--status-POLICY_URL (context string)
1622 (let ((signature (car (epg-context-result-for context 'verify))))
1623 (if signature
1624 (epg-signature-set-notations
1625 signature
1626 (cons (epg-make-sig-notation nil string t nil)
1627 (epg-sig-notations signature))))))
1628
1629 (defun epg--status-PROGRESS (context string)
1630 (if (and (epg-context-progress-callback context)
1631 (string-match "\\`\\([^ ]+\\) \\([^ ]\\) \\([0-9]+\\) \\([0-9]+\\)"
1632 string))
1633 (funcall (car (epg-context-progress-callback context))
1634 context
1635 (match-string 1 string)
1636 (match-string 2 string)
1637 (string-to-number (match-string 3 string))
1638 (string-to-number (match-string 4 string))
1639 (cdr (epg-context-progress-callback context)))))
1640
1641 (defun epg--status-ENC_TO (context string)
1642 (if (string-match "\\`\\([0-9A-Za-z]+\\) \\([0-9]+\\) \\([0-9]+\\)" string)
1643 (epg-context-set-result-for
1644 context 'encrypted-to
1645 (cons (list (match-string 1 string)
1646 (string-to-number (match-string 2 string))
1647 (string-to-number (match-string 3 string)))
1648 (epg-context-result-for context 'encrypted-to)))))
1649
1650 (defun epg--status-DECRYPTION_FAILED (context _string)
1651 (epg-context-set-result-for context 'decryption-failed t))
1652
1653 (defun epg--status-DECRYPTION_OKAY (context _string)
1654 (epg-context-set-result-for context 'decryption-okay t))
1655
1656 (defun epg--status-NODATA (context string)
1657 (epg-context-set-result-for
1658 context 'error
1659 (cons (cons 'no-data (string-to-number string))
1660 (epg-context-result-for context 'error))))
1661
1662 (defun epg--status-UNEXPECTED (context string)
1663 (epg-context-set-result-for
1664 context 'error
1665 (cons (cons 'unexpected (string-to-number string))
1666 (epg-context-result-for context 'error))))
1667
1668 (defun epg--status-KEYEXPIRED (context string)
1669 (epg-context-set-result-for
1670 context 'key
1671 (cons (list 'key-expired (cons 'expiration-time
1672 (epg--time-from-seconds string)))
1673 (epg-context-result-for context 'key))))
1674
1675 (defun epg--status-KEYREVOKED (context _string)
1676 (epg-context-set-result-for
1677 context 'key
1678 (cons '(key-revoked)
1679 (epg-context-result-for context 'key))))
1680
1681 (defun epg--status-BADARMOR (context _string)
1682 (epg-context-set-result-for
1683 context 'error
1684 (cons '(bad-armor)
1685 (epg-context-result-for context 'error))))
1686
1687 (defun epg--status-INV_RECP (context string)
1688 (if (string-match "\\`\\([0-9]+\\) \\(.*\\)" string)
1689 (epg-context-set-result-for
1690 context 'error
1691 (cons (list 'invalid-recipient
1692 (cons 'reason
1693 (string-to-number (match-string 1 string)))
1694 (cons 'requested
1695 (match-string 2 string)))
1696 (epg-context-result-for context 'error)))))
1697
1698 (defun epg--status-INV_SGNR (context string)
1699 (if (string-match "\\`\\([0-9]+\\) \\(.*\\)" string)
1700 (epg-context-set-result-for
1701 context 'error
1702 (cons (list 'invalid-signer
1703 (cons 'reason
1704 (string-to-number (match-string 1 string)))
1705 (cons 'requested
1706 (match-string 2 string)))
1707 (epg-context-result-for context 'error)))))
1708
1709 (defun epg--status-NO_RECP (context _string)
1710 (epg-context-set-result-for
1711 context 'error
1712 (cons '(no-recipients)
1713 (epg-context-result-for context 'error))))
1714
1715 (defun epg--status-NO_SGNR (context _string)
1716 (epg-context-set-result-for
1717 context 'error
1718 (cons '(no-signers)
1719 (epg-context-result-for context 'error))))
1720
1721 (defun epg--status-DELETE_PROBLEM (context string)
1722 (if (string-match "\\`\\([0-9]+\\)" string)
1723 (epg-context-set-result-for
1724 context 'error
1725 (cons (cons 'delete-problem
1726 (string-to-number (match-string 1 string)))
1727 (epg-context-result-for context 'error)))))
1728
1729 (defun epg--status-SIG_CREATED (context string)
1730 (if (string-match "\\`\\([DCS]\\) \\([0-9]+\\) \\([0-9]+\\) \
1731 \\([0-9A-Fa-F][0-9A-Fa-F]\\) \\(.*\\) " string)
1732 (epg-context-set-result-for
1733 context 'sign
1734 (cons (epg-make-new-signature
1735 (cdr (assq (aref (match-string 1 string) 0)
1736 epg-new-signature-type-alist))
1737 (string-to-number (match-string 2 string))
1738 (string-to-number (match-string 3 string))
1739 (string-to-number (match-string 4 string) 16)
1740 (epg--time-from-seconds (match-string 5 string))
1741 (substring string (match-end 0)))
1742 (epg-context-result-for context 'sign)))))
1743
1744 (defun epg--status-KEY_CREATED (context string)
1745 (if (string-match "\\`\\([BPS]\\) \\([^ ]+\\)" string)
1746 (epg-context-set-result-for
1747 context 'generate-key
1748 (cons (list (cons 'type (string-to-char (match-string 1 string)))
1749 (cons 'fingerprint (match-string 2 string)))
1750 (epg-context-result-for context 'generate-key)))))
1751
1752 (defun epg--status-KEY_NOT_CREATED (context _string)
1753 (epg-context-set-result-for
1754 context 'error
1755 (cons '(key-not-created)
1756 (epg-context-result-for context 'error))))
1757
1758 (defun epg--status-IMPORTED (_context string)
1759 (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
1760 (let* ((key-id (match-string 1 string))
1761 (user-id (match-string 2 string))
1762 (entry (assoc key-id epg-user-id-alist)))
1763 (condition-case nil
1764 (setq user-id (epg--decode-coding-string
1765 (epg--decode-percent-escape user-id)
1766 'utf-8))
1767 (error))
1768 (if entry
1769 (setcdr entry user-id)
1770 (setq epg-user-id-alist (cons (cons key-id user-id)
1771 epg-user-id-alist))))))
1772
1773 (defun epg--status-IMPORT_OK (context string)
1774 (if (string-match "\\`\\([0-9]+\\)\\( \\(.+\\)\\)?" string)
1775 (let ((reason (string-to-number (match-string 1 string))))
1776 (epg-context-set-result-for
1777 context 'import-status
1778 (cons (epg-make-import-status (if (match-beginning 2)
1779 (match-string 3 string))
1780 nil
1781 (/= (logand reason 1) 0)
1782 (/= (logand reason 2) 0)
1783 (/= (logand reason 4) 0)
1784 (/= (logand reason 8) 0)
1785 (/= (logand reason 16) 0))
1786 (epg-context-result-for context 'import-status))))))
1787
1788 (defun epg--status-IMPORT_PROBLEM (context string)
1789 (if (string-match "\\`\\([0-9]+\\)\\( \\(.+\\)\\)?" string)
1790 (epg-context-set-result-for
1791 context 'import-status
1792 (cons (epg-make-import-status
1793 (if (match-beginning 2)
1794 (match-string 3 string))
1795 (string-to-number (match-string 1 string)))
1796 (epg-context-result-for context 'import-status)))))
1797
1798 (defun epg--status-IMPORT_RES (context string)
1799 (when (string-match "\\`\\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\) \
1800 \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\) \
1801 \\([0-9]+\\) \\([0-9]+\\) \\([0-9]+\\)" string)
1802 (epg-context-set-result-for
1803 context 'import
1804 (epg-make-import-result (string-to-number (match-string 1 string))
1805 (string-to-number (match-string 2 string))
1806 (string-to-number (match-string 3 string))
1807 (string-to-number (match-string 4 string))
1808 (string-to-number (match-string 5 string))
1809 (string-to-number (match-string 6 string))
1810 (string-to-number (match-string 7 string))
1811 (string-to-number (match-string 8 string))
1812 (string-to-number (match-string 9 string))
1813 (string-to-number (match-string 10 string))
1814 (string-to-number (match-string 11 string))
1815 (string-to-number (match-string 12 string))
1816 (string-to-number (match-string 13 string))
1817 (epg-context-result-for context 'import-status)))
1818 (epg-context-set-result-for context 'import-status nil)))
1819
1820 (defun epg-passphrase-callback-function (context key-id _handback)
1821 (declare (obsolete epa-passphrase-callback-function "23.1"))
1822 (if (eq key-id 'SYM)
1823 (read-passwd "Passphrase for symmetric encryption: "
1824 (eq (epg-context-operation context) 'encrypt))
1825 (read-passwd
1826 (if (eq key-id 'PIN)
1827 "Passphrase for PIN: "
1828 (let ((entry (assoc key-id epg-user-id-alist)))
1829 (if entry
1830 (format "Passphrase for %s %s: " key-id (cdr entry))
1831 (format "Passphrase for %s: " key-id)))))))
1832
1833 (defun epg--list-keys-1 (context name mode)
1834 (let ((args (append (if epg-gpg-home-directory
1835 (list "--homedir" epg-gpg-home-directory))
1836 '("--with-colons" "--no-greeting" "--batch"
1837 "--with-fingerprint" "--with-fingerprint")
1838 (unless (eq (epg-context-protocol context) 'CMS)
1839 '("--fixed-list-mode"))))
1840 (list-keys-option (if (memq mode '(t secret))
1841 "--list-secret-keys"
1842 (if (memq mode '(nil public))
1843 "--list-keys"
1844 "--list-sigs")))
1845 (coding-system-for-read 'binary)
1846 keys string field index)
1847 (if name
1848 (progn
1849 (unless (listp name)
1850 (setq name (list name)))
1851 (while name
1852 (setq args (append args (list list-keys-option (car name)))
1853 name (cdr name))))
1854 (setq args (append args (list list-keys-option))))
1855 (with-temp-buffer
1856 (apply #'call-process
1857 (if (eq (epg-context-protocol context) 'CMS)
1858 epg-gpgsm-program
1859 epg-gpg-program)
1860 nil (list t nil) nil args)
1861 (goto-char (point-min))
1862 (while (re-search-forward "^[a-z][a-z][a-z]:.*" nil t)
1863 (setq keys (cons (make-vector 15 nil) keys)
1864 string (match-string 0)
1865 index 0
1866 field 0)
1867 (while (eq index
1868 (string-match "\\([^:]+\\)?:" string index))
1869 (setq index (match-end 0))
1870 (aset (car keys) field (match-string 1 string))
1871 (setq field (1+ field))))
1872 (nreverse keys))))
1873
1874 (defun epg--make-sub-key-1 (line)
1875 (epg-make-sub-key
1876 (if (aref line 1)
1877 (cdr (assq (string-to-char (aref line 1)) epg-key-validity-alist)))
1878 (delq nil
1879 (mapcar (lambda (char) (cdr (assq char epg-key-capablity-alist)))
1880 (aref line 11)))
1881 (member (aref line 0) '("sec" "ssb"))
1882 (string-to-number (aref line 3))
1883 (string-to-number (aref line 2))
1884 (aref line 4)
1885 (epg--time-from-seconds (aref line 5))
1886 (if (aref line 6)
1887 (epg--time-from-seconds (aref line 6)))))
1888
1889 (defun epg-list-keys (context &optional name mode)
1890 "Return a list of epg-key objects matched with NAME.
1891 If MODE is nil or 'public, only public keyring should be searched.
1892 If MODE is t or 'secret, only secret keyring should be searched.
1893 Otherwise, only public keyring should be searched and the key
1894 signatures should be included.
1895 NAME is either a string or a list of strings."
1896 (let ((lines (epg--list-keys-1 context name mode))
1897 keys cert pointer pointer-1 index string)
1898 (while lines
1899 (cond
1900 ((member (aref (car lines) 0) '("pub" "sec" "crt" "crs"))
1901 (setq cert (member (aref (car lines) 0) '("crt" "crs"))
1902 keys (cons (epg-make-key
1903 (if (aref (car lines) 8)
1904 (cdr (assq (string-to-char (aref (car lines) 8))
1905 epg-key-validity-alist))))
1906 keys))
1907 (epg-key-set-sub-key-list
1908 (car keys)
1909 (cons (epg--make-sub-key-1 (car lines))
1910 (epg-key-sub-key-list (car keys)))))
1911 ((member (aref (car lines) 0) '("sub" "ssb"))
1912 (epg-key-set-sub-key-list
1913 (car keys)
1914 (cons (epg--make-sub-key-1 (car lines))
1915 (epg-key-sub-key-list (car keys)))))
1916 ((equal (aref (car lines) 0) "uid")
1917 ;; Decode the UID name as a backslash escaped UTF-8 string,
1918 ;; generated by GnuPG/GpgSM.
1919 (setq string (copy-sequence (aref (car lines) 9))
1920 index 0)
1921 (while (string-match "\"" string index)
1922 (setq string (replace-match "\\\"" t t string)
1923 index (1+ (match-end 0))))
1924 (condition-case nil
1925 (setq string (epg--decode-coding-string
1926 (car (read-from-string (concat "\"" string "\"")))
1927 'utf-8))
1928 (error
1929 (setq string (aref (car lines) 9))))
1930 (epg-key-set-user-id-list
1931 (car keys)
1932 (cons (epg-make-user-id
1933 (if (aref (car lines) 1)
1934 (cdr (assq (string-to-char (aref (car lines) 1))
1935 epg-key-validity-alist)))
1936 (if cert
1937 (condition-case nil
1938 (epg-dn-from-string string)
1939 (error string))
1940 string))
1941 (epg-key-user-id-list (car keys)))))
1942 ((equal (aref (car lines) 0) "fpr")
1943 (epg-sub-key-set-fingerprint (car (epg-key-sub-key-list (car keys)))
1944 (aref (car lines) 9)))
1945 ((equal (aref (car lines) 0) "sig")
1946 (epg-user-id-set-signature-list
1947 (car (epg-key-user-id-list (car keys)))
1948 (cons
1949 (epg-make-key-signature
1950 (if (aref (car lines) 1)
1951 (cdr (assq (string-to-char (aref (car lines) 1))
1952 epg-key-validity-alist)))
1953 (string-to-number (aref (car lines) 3))
1954 (aref (car lines) 4)
1955 (epg--time-from-seconds (aref (car lines) 5))
1956 (epg--time-from-seconds (aref (car lines) 6))
1957 (aref (car lines) 9)
1958 (string-to-number (aref (car lines) 10) 16)
1959 (eq (aref (aref (car lines) 10) 2) ?x))
1960 (epg-user-id-signature-list
1961 (car (epg-key-user-id-list (car keys))))))))
1962 (setq lines (cdr lines)))
1963 (setq keys (nreverse keys)
1964 pointer keys)
1965 (while pointer
1966 (epg-key-set-sub-key-list
1967 (car pointer)
1968 (nreverse (epg-key-sub-key-list (car pointer))))
1969 (setq pointer-1 (epg-key-set-user-id-list
1970 (car pointer)
1971 (nreverse (epg-key-user-id-list (car pointer)))))
1972 (while pointer-1
1973 (epg-user-id-set-signature-list
1974 (car pointer-1)
1975 (nreverse (epg-user-id-signature-list (car pointer-1))))
1976 (setq pointer-1 (cdr pointer-1)))
1977 (setq pointer (cdr pointer)))
1978 keys))
1979
1980 (eval-and-compile
1981 (if (fboundp 'make-temp-file)
1982 (defalias 'epg--make-temp-file 'make-temp-file)
1983 (defvar temporary-file-directory)
1984 ;; stolen from poe.el.
1985 (defun epg--make-temp-file (prefix)
1986 "Create a temporary file.
1987 The returned file name (created by appending some random characters at the end
1988 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1989 is guaranteed to point to a newly created empty file.
1990 You can then use `write-region' to write new data into the file."
1991 (let ((orig-modes (default-file-modes))
1992 tempdir tempfile)
1993 (setq prefix (expand-file-name prefix
1994 (if (featurep 'xemacs)
1995 (temp-directory)
1996 temporary-file-directory)))
1997 (unwind-protect
1998 (let (file)
1999 ;; First, create a temporary directory.
2000 (set-default-file-modes #o700)
2001 (while (condition-case ()
2002 (progn
2003 (setq tempdir (make-temp-name
2004 (concat
2005 (file-name-directory prefix)
2006 "DIR")))
2007 ;; return nil or signal an error.
2008 (make-directory tempdir))
2009 ;; let's try again.
2010 (file-already-exists t)))
2011 ;; Second, create a temporary file in the tempdir.
2012 ;; There *is* a race condition between `make-temp-name'
2013 ;; and `write-region', but we don't care it since we are
2014 ;; in a private directory now.
2015 (setq tempfile (make-temp-name (concat tempdir "/EMU")))
2016 (write-region "" nil tempfile nil 'silent)
2017 ;; Finally, make a hard-link from the tempfile.
2018 (while (condition-case ()
2019 (progn
2020 (setq file (make-temp-name prefix))
2021 ;; return nil or signal an error.
2022 (add-name-to-file tempfile file))
2023 ;; let's try again.
2024 (file-already-exists t)))
2025 file)
2026 (set-default-file-modes orig-modes)
2027 ;; Cleanup the tempfile.
2028 (and tempfile
2029 (file-exists-p tempfile)
2030 (delete-file tempfile))
2031 ;; Cleanup the tempdir.
2032 (and tempdir
2033 (file-directory-p tempdir)
2034 (delete-directory tempdir)))))))
2035
2036 (defun epg--args-from-sig-notations (notations)
2037 (apply #'nconc
2038 (mapcar
2039 (lambda (notation)
2040 (if (and (epg-sig-notation-name notation)
2041 (not (epg-sig-notation-human-readable notation)))
2042 (error "Unreadable"))
2043 (if (epg-sig-notation-name notation)
2044 (list "--sig-notation"
2045 (if (epg-sig-notation-critical notation)
2046 (concat "!" (epg-sig-notation-name notation)
2047 "=" (epg-sig-notation-value notation))
2048 (concat (epg-sig-notation-name notation)
2049 "=" (epg-sig-notation-value notation))))
2050 (list "--sig-policy-url"
2051 (if (epg-sig-notation-critical notation)
2052 (concat "!" (epg-sig-notation-value notation))
2053 (epg-sig-notation-value notation)))))
2054 notations)))
2055
2056 (defun epg-cancel (context)
2057 (if (buffer-live-p (process-buffer (epg-context-process context)))
2058 (with-current-buffer (process-buffer (epg-context-process context))
2059 (epg-context-set-result-for
2060 epg-context 'error
2061 (cons '(quit)
2062 (epg-context-result-for epg-context 'error)))))
2063 (if (eq (process-status (epg-context-process context)) 'run)
2064 (delete-process (epg-context-process context))))
2065
2066 (defun epg-start-decrypt (context cipher)
2067 "Initiate a decrypt operation on CIPHER.
2068 CIPHER must be a file data object.
2069
2070 If you use this function, you will need to wait for the completion of
2071 `epg-gpg-program' by using `epg-wait-for-completion' and call
2072 `epg-reset' to clear a temporary output file.
2073 If you are unsure, use synchronous version of this function
2074 `epg-decrypt-file' or `epg-decrypt-string' instead."
2075 (unless (epg-data-file cipher)
2076 (error "Not a file"))
2077 (epg-context-set-operation context 'decrypt)
2078 (epg-context-set-result context nil)
2079 (epg--start context (list "--decrypt" "--" (epg-data-file cipher)))
2080 ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
2081 (unless (eq (epg-context-protocol context) 'CMS)
2082 (epg-wait-for-status context '("BEGIN_DECRYPTION"))))
2083
2084 (defun epg--check-error-for-decrypt (context)
2085 (let ((errors (epg-context-result-for context 'error)))
2086 (if (epg-context-result-for context 'decryption-failed)
2087 (signal 'epg-error
2088 (list "Decryption failed" (epg-errors-to-string errors))))
2089 (unless (epg-context-result-for context 'decryption-okay)
2090 (signal 'epg-error
2091 (list "Can't decrypt" (epg-errors-to-string errors))))))
2092
2093 (defun epg-decrypt-file (context cipher plain)
2094 "Decrypt a file CIPHER and store the result to a file PLAIN.
2095 If PLAIN is nil, it returns the result as a string."
2096 (unwind-protect
2097 (progn
2098 (if plain
2099 (epg-context-set-output-file context plain)
2100 (epg-context-set-output-file context
2101 (epg--make-temp-file "epg-output")))
2102 (epg-start-decrypt context (epg-make-data-from-file cipher))
2103 (epg-wait-for-completion context)
2104 (epg--check-error-for-decrypt context)
2105 (unless plain
2106 (epg-read-output context)))
2107 (unless plain
2108 (epg-delete-output-file context))
2109 (epg-reset context)))
2110
2111 (defun epg-decrypt-string (context cipher)
2112 "Decrypt a string CIPHER and return the plain text."
2113 (let ((input-file (epg--make-temp-file "epg-input"))
2114 (coding-system-for-write 'binary))
2115 (unwind-protect
2116 (progn
2117 (write-region cipher nil input-file nil 'quiet)
2118 (epg-context-set-output-file context
2119 (epg--make-temp-file "epg-output"))
2120 (epg-start-decrypt context (epg-make-data-from-file input-file))
2121 (epg-wait-for-completion context)
2122 (epg--check-error-for-decrypt context)
2123 (epg-read-output context))
2124 (epg-delete-output-file context)
2125 (if (file-exists-p input-file)
2126 (delete-file input-file))
2127 (epg-reset context))))
2128
2129 (defun epg-start-verify (context signature &optional signed-text)
2130 "Initiate a verify operation on SIGNATURE.
2131 SIGNATURE and SIGNED-TEXT are a data object if they are specified.
2132
2133 For a detached signature, both SIGNATURE and SIGNED-TEXT should be set.
2134 For a normal or a cleartext signature, SIGNED-TEXT should be nil.
2135
2136 If you use this function, you will need to wait for the completion of
2137 `epg-gpg-program' by using `epg-wait-for-completion' and call
2138 `epg-reset' to clear a temporary output file.
2139 If you are unsure, use synchronous version of this function
2140 `epg-verify-file' or `epg-verify-string' instead."
2141 (epg-context-set-operation context 'verify)
2142 (epg-context-set-result context nil)
2143 (if signed-text
2144 ;; Detached signature.
2145 (if (epg-data-file signed-text)
2146 (epg--start context (list "--verify" "--" (epg-data-file signature)
2147 (epg-data-file signed-text)))
2148 (epg--start context (list "--verify" "--" (epg-data-file signature)
2149 "-"))
2150 (if (eq (process-status (epg-context-process context)) 'run)
2151 (process-send-string (epg-context-process context)
2152 (epg-data-string signed-text)))
2153 (if (eq (process-status (epg-context-process context)) 'run)
2154 (process-send-eof (epg-context-process context))))
2155 ;; Normal (or cleartext) signature.
2156 (if (epg-data-file signature)
2157 (epg--start context (if (eq (epg-context-protocol context) 'CMS)
2158 (list "--verify" "--" (epg-data-file signature))
2159 (list "--" (epg-data-file signature))))
2160 (epg--start context (if (eq (epg-context-protocol context) 'CMS)
2161 '("--verify" "-")
2162 '("-")))
2163 (if (eq (process-status (epg-context-process context)) 'run)
2164 (process-send-string (epg-context-process context)
2165 (epg-data-string signature)))
2166 (if (eq (process-status (epg-context-process context)) 'run)
2167 (process-send-eof (epg-context-process context))))))
2168
2169 (defun epg-verify-file (context signature &optional signed-text plain)
2170 "Verify a file SIGNATURE.
2171 SIGNED-TEXT and PLAIN are also a file if they are specified.
2172
2173 For a detached signature, both SIGNATURE and SIGNED-TEXT should be
2174 string. For a normal or a cleartext signature, SIGNED-TEXT should be
2175 nil. In the latter case, if PLAIN is specified, the plaintext is
2176 stored into the file after successful verification."
2177 (unwind-protect
2178 (progn
2179 (if plain
2180 (epg-context-set-output-file context plain)
2181 (epg-context-set-output-file context
2182 (epg--make-temp-file "epg-output")))
2183 (if signed-text
2184 (epg-start-verify context
2185 (epg-make-data-from-file signature)
2186 (epg-make-data-from-file signed-text))
2187 (epg-start-verify context
2188 (epg-make-data-from-file signature)))
2189 (epg-wait-for-completion context)
2190 (unless plain
2191 (epg-read-output context)))
2192 (unless plain
2193 (epg-delete-output-file context))
2194 (epg-reset context)))
2195
2196 (defun epg-verify-string (context signature &optional signed-text)
2197 "Verify a string SIGNATURE.
2198 SIGNED-TEXT is a string if it is specified.
2199
2200 For a detached signature, both SIGNATURE and SIGNED-TEXT should be
2201 string. For a normal or a cleartext signature, SIGNED-TEXT should be
2202 nil. In the latter case, this function returns the plaintext after
2203 successful verification."
2204 (let ((coding-system-for-write 'binary)
2205 input-file)
2206 (unwind-protect
2207 (progn
2208 (epg-context-set-output-file context
2209 (epg--make-temp-file "epg-output"))
2210 (if signed-text
2211 (progn
2212 (setq input-file (epg--make-temp-file "epg-signature"))
2213 (write-region signature nil input-file nil 'quiet)
2214 (epg-start-verify context
2215 (epg-make-data-from-file input-file)
2216 (epg-make-data-from-string signed-text)))
2217 (epg-start-verify context (epg-make-data-from-string signature)))
2218 (epg-wait-for-completion context)
2219 (epg-read-output context))
2220 (epg-delete-output-file context)
2221 (if (and input-file
2222 (file-exists-p input-file))
2223 (delete-file input-file))
2224 (epg-reset context))))
2225
2226 (defun epg-start-sign (context plain &optional mode)
2227 "Initiate a sign operation on PLAIN.
2228 PLAIN is a data object.
2229
2230 If optional 3rd argument MODE is t or 'detached, it makes a detached signature.
2231 If it is nil or 'normal, it makes a normal signature.
2232 Otherwise, it makes a cleartext signature.
2233
2234 If you use this function, you will need to wait for the completion of
2235 `epg-gpg-program' by using `epg-wait-for-completion' and call
2236 `epg-reset' to clear a temporary output file.
2237 If you are unsure, use synchronous version of this function
2238 `epg-sign-file' or `epg-sign-string' instead."
2239 (epg-context-set-operation context 'sign)
2240 (epg-context-set-result context nil)
2241 (unless (memq mode '(t detached nil normal)) ;i.e. cleartext
2242 (epg-context-set-armor context nil)
2243 (epg-context-set-textmode context nil))
2244 (epg--start context
2245 (append (list (if (memq mode '(t detached))
2246 "--detach-sign"
2247 (if (memq mode '(nil normal))
2248 "--sign"
2249 "--clearsign")))
2250 (apply #'nconc
2251 (mapcar
2252 (lambda (signer)
2253 (list "-u"
2254 (epg-sub-key-id
2255 (car (epg-key-sub-key-list signer)))))
2256 (epg-context-signers context)))
2257 (epg--args-from-sig-notations
2258 (epg-context-sig-notations context))
2259 (if (epg-data-file plain)
2260 (list "--" (epg-data-file plain)))))
2261 ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
2262 (unless (eq (epg-context-protocol context) 'CMS)
2263 (epg-wait-for-status context '("BEGIN_SIGNING")))
2264 (when (epg-data-string plain)
2265 (if (eq (process-status (epg-context-process context)) 'run)
2266 (process-send-string (epg-context-process context)
2267 (epg-data-string plain)))
2268 (if (eq (process-status (epg-context-process context)) 'run)
2269 (process-send-eof (epg-context-process context)))))
2270
2271 (defun epg-sign-file (context plain signature &optional mode)
2272 "Sign a file PLAIN and store the result to a file SIGNATURE.
2273 If SIGNATURE is nil, it returns the result as a string.
2274 If optional 3rd argument MODE is t or 'detached, it makes a detached signature.
2275 If it is nil or 'normal, it makes a normal signature.
2276 Otherwise, it makes a cleartext signature."
2277 (unwind-protect
2278 (progn
2279 (if signature
2280 (epg-context-set-output-file context signature)
2281 (epg-context-set-output-file context
2282 (epg--make-temp-file "epg-output")))
2283 (epg-start-sign context (epg-make-data-from-file plain) mode)
2284 (epg-wait-for-completion context)
2285 (unless (epg-context-result-for context 'sign)
2286 (let ((errors (epg-context-result-for context 'error)))
2287 (signal 'epg-error
2288 (list "Sign failed" (epg-errors-to-string errors)))))
2289 (unless signature
2290 (epg-read-output context)))
2291 (unless signature
2292 (epg-delete-output-file context))
2293 (epg-reset context)))
2294
2295 (defun epg-sign-string (context plain &optional mode)
2296 "Sign a string PLAIN and return the output as string.
2297 If optional 3rd argument MODE is t or 'detached, it makes a detached signature.
2298 If it is nil or 'normal, it makes a normal signature.
2299 Otherwise, it makes a cleartext signature."
2300 (let ((input-file
2301 (unless (or (eq (epg-context-protocol context) 'CMS)
2302 (condition-case nil
2303 (progn
2304 (epg-check-configuration (epg-configuration))
2305 t)
2306 (error)))
2307 (epg--make-temp-file "epg-input")))
2308 (coding-system-for-write 'binary))
2309 (unwind-protect
2310 (progn
2311 (epg-context-set-output-file context
2312 (epg--make-temp-file "epg-output"))
2313 (if input-file
2314 (write-region plain nil input-file nil 'quiet))
2315 (epg-start-sign context
2316 (if input-file
2317 (epg-make-data-from-file input-file)
2318 (epg-make-data-from-string plain))
2319 mode)
2320 (epg-wait-for-completion context)
2321 (unless (epg-context-result-for context 'sign)
2322 (if (epg-context-result-for context 'error)
2323 (let ((errors (epg-context-result-for context 'error)))
2324 (signal 'epg-error
2325 (list "Sign failed" (epg-errors-to-string errors))))))
2326 (epg-read-output context))
2327 (epg-delete-output-file context)
2328 (if input-file
2329 (delete-file input-file))
2330 (epg-reset context))))
2331
2332 (defun epg-start-encrypt (context plain recipients
2333 &optional sign always-trust)
2334 "Initiate an encrypt operation on PLAIN.
2335 PLAIN is a data object.
2336 If RECIPIENTS is nil, it performs symmetric encryption.
2337
2338 If you use this function, you will need to wait for the completion of
2339 `epg-gpg-program' by using `epg-wait-for-completion' and call
2340 `epg-reset' to clear a temporary output file.
2341 If you are unsure, use synchronous version of this function
2342 `epg-encrypt-file' or `epg-encrypt-string' instead."
2343 (epg-context-set-operation context 'encrypt)
2344 (epg-context-set-result context nil)
2345 (epg--start context
2346 (append (if always-trust '("--always-trust"))
2347 (if recipients '("--encrypt") '("--symmetric"))
2348 (if sign '("--sign"))
2349 (if sign
2350 (apply #'nconc
2351 (mapcar
2352 (lambda (signer)
2353 (list "-u"
2354 (epg-sub-key-id
2355 (car (epg-key-sub-key-list
2356 signer)))))
2357 (epg-context-signers context))))
2358 (if sign
2359 (epg--args-from-sig-notations
2360 (epg-context-sig-notations context)))
2361 (apply #'nconc
2362 (mapcar
2363 (lambda (recipient)
2364 (list "-r"
2365 (epg-sub-key-id
2366 (car (epg-key-sub-key-list recipient)))))
2367 recipients))
2368 (if (epg-data-file plain)
2369 (list "--" (epg-data-file plain)))))
2370 ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
2371 (unless (eq (epg-context-protocol context) 'CMS)
2372 (if sign
2373 (epg-wait-for-status context '("BEGIN_SIGNING"))
2374 (epg-wait-for-status context '("BEGIN_ENCRYPTION"))))
2375 (when (epg-data-string plain)
2376 (if (eq (process-status (epg-context-process context)) 'run)
2377 (process-send-string (epg-context-process context)
2378 (epg-data-string plain)))
2379 (if (eq (process-status (epg-context-process context)) 'run)
2380 (process-send-eof (epg-context-process context)))))
2381
2382 (defun epg-encrypt-file (context plain recipients
2383 cipher &optional sign always-trust)
2384 "Encrypt a file PLAIN and store the result to a file CIPHER.
2385 If CIPHER is nil, it returns the result as a string.
2386 If RECIPIENTS is nil, it performs symmetric encryption."
2387 (unwind-protect
2388 (progn
2389 (if cipher
2390 (epg-context-set-output-file context cipher)
2391 (epg-context-set-output-file context
2392 (epg--make-temp-file "epg-output")))
2393 (epg-start-encrypt context (epg-make-data-from-file plain)
2394 recipients sign always-trust)
2395 (epg-wait-for-completion context)
2396 (let ((errors (epg-context-result-for context 'error)))
2397 (if (and sign
2398 (not (epg-context-result-for context 'sign)))
2399 (signal 'epg-error
2400 (list "Sign failed" (epg-errors-to-string errors))))
2401 (if errors
2402 (signal 'epg-error
2403 (list "Encrypt failed" (epg-errors-to-string errors)))))
2404 (unless cipher
2405 (epg-read-output context)))
2406 (unless cipher
2407 (epg-delete-output-file context))
2408 (epg-reset context)))
2409
2410 (defun epg-encrypt-string (context plain recipients
2411 &optional sign always-trust)
2412 "Encrypt a string PLAIN.
2413 If RECIPIENTS is nil, it performs symmetric encryption."
2414 (let ((input-file
2415 (unless (or (not sign)
2416 (eq (epg-context-protocol context) 'CMS)
2417 (condition-case nil
2418 (progn
2419 (epg-check-configuration (epg-configuration))
2420 t)
2421 (error)))
2422 (epg--make-temp-file "epg-input")))
2423 (coding-system-for-write 'binary))
2424 (unwind-protect
2425 (progn
2426 (epg-context-set-output-file context
2427 (epg--make-temp-file "epg-output"))
2428 (if input-file
2429 (write-region plain nil input-file nil 'quiet))
2430 (epg-start-encrypt context
2431 (if input-file
2432 (epg-make-data-from-file input-file)
2433 (epg-make-data-from-string plain))
2434 recipients sign always-trust)
2435 (epg-wait-for-completion context)
2436 (let ((errors (epg-context-result-for context 'error)))
2437 (if (and sign
2438 (not (epg-context-result-for context 'sign)))
2439 (signal 'epg-error
2440 (list "Sign failed" (epg-errors-to-string errors))))
2441 (if errors
2442 (signal 'epg-error
2443 (list "Encrypt failed" (epg-errors-to-string errors)))))
2444 (epg-read-output context))
2445 (epg-delete-output-file context)
2446 (if input-file
2447 (delete-file input-file))
2448 (epg-reset context))))
2449
2450 (defun epg-start-export-keys (context keys)
2451 "Initiate an export keys operation.
2452
2453 If you use this function, you will need to wait for the completion of
2454 `epg-gpg-program' by using `epg-wait-for-completion' and call
2455 `epg-reset' to clear a temporary output file.
2456 If you are unsure, use synchronous version of this function
2457 `epg-export-keys-to-file' or `epg-export-keys-to-string' instead."
2458 (epg-context-set-operation context 'export-keys)
2459 (epg-context-set-result context nil)
2460 (epg--start context (cons "--export"
2461 (mapcar
2462 (lambda (key)
2463 (epg-sub-key-id
2464 (car (epg-key-sub-key-list key))))
2465 keys))))
2466
2467 (defun epg-export-keys-to-file (context keys file)
2468 "Extract public KEYS."
2469 (unwind-protect
2470 (progn
2471 (if file
2472 (epg-context-set-output-file context file)
2473 (epg-context-set-output-file context
2474 (epg--make-temp-file "epg-output")))
2475 (epg-start-export-keys context keys)
2476 (epg-wait-for-completion context)
2477 (let ((errors (epg-context-result-for context 'error)))
2478 (if errors
2479 (signal 'epg-error
2480 (list "Export keys failed"
2481 (epg-errors-to-string errors)))))
2482 (unless file
2483 (epg-read-output context)))
2484 (unless file
2485 (epg-delete-output-file context))
2486 (epg-reset context)))
2487
2488 (defun epg-export-keys-to-string (context keys)
2489 "Extract public KEYS and return them as a string."
2490 (epg-export-keys-to-file context keys nil))
2491
2492 (defun epg-start-import-keys (context keys)
2493 "Initiate an import keys operation.
2494 KEYS is a data object.
2495
2496 If you use this function, you will need to wait for the completion of
2497 `epg-gpg-program' by using `epg-wait-for-completion' and call
2498 `epg-reset' to clear a temporary output file.
2499 If you are unsure, use synchronous version of this function
2500 `epg-import-keys-from-file' or `epg-import-keys-from-string' instead."
2501 (epg-context-set-operation context 'import-keys)
2502 (epg-context-set-result context nil)
2503 (epg--start context (if (epg-data-file keys)
2504 (list "--import" "--" (epg-data-file keys))
2505 (list "--import")))
2506 (when (epg-data-string keys)
2507 (if (eq (process-status (epg-context-process context)) 'run)
2508 (process-send-string (epg-context-process context)
2509 (epg-data-string keys)))
2510 (if (eq (process-status (epg-context-process context)) 'run)
2511 (process-send-eof (epg-context-process context)))))
2512
2513 (defun epg--import-keys-1 (context keys)
2514 (unwind-protect
2515 (progn
2516 (epg-start-import-keys context keys)
2517 (epg-wait-for-completion context)
2518 (let ((errors (epg-context-result-for context 'error)))
2519 (if errors
2520 (signal 'epg-error
2521 (list "Import keys failed"
2522 (epg-errors-to-string errors))))))
2523 (epg-reset context)))
2524
2525 (defun epg-import-keys-from-file (context keys)
2526 "Add keys from a file KEYS."
2527 (epg--import-keys-1 context (epg-make-data-from-file keys)))
2528
2529 (defun epg-import-keys-from-string (context keys)
2530 "Add keys from a string KEYS."
2531 (epg--import-keys-1 context (epg-make-data-from-string keys)))
2532
2533 (defun epg-start-receive-keys (context key-id-list)
2534 "Initiate a receive key operation.
2535 KEY-ID-LIST is a list of key IDs.
2536
2537 If you use this function, you will need to wait for the completion of
2538 `epg-gpg-program' by using `epg-wait-for-completion' and call
2539 `epg-reset' to clear a temporary output file.
2540 If you are unsure, use synchronous version of this function
2541 `epg-receive-keys' instead."
2542 (epg-context-set-operation context 'receive-keys)
2543 (epg-context-set-result context nil)
2544 (epg--start context (cons "--recv-keys" key-id-list)))
2545
2546 (defun epg-receive-keys (context keys)
2547 "Add keys from server.
2548 KEYS is a list of key IDs"
2549 (unwind-protect
2550 (progn
2551 (epg-start-receive-keys context keys)
2552 (epg-wait-for-completion context)
2553 (let ((errors (epg-context-result-for context 'error)))
2554 (if errors
2555 (signal 'epg-error
2556 (list "Receive keys failed"
2557 (epg-errors-to-string errors))))))
2558 (epg-reset context)))
2559
2560 (defalias 'epg-import-keys-from-server 'epg-receive-keys)
2561
2562 (defun epg-start-delete-keys (context keys &optional allow-secret)
2563 "Initiate a delete keys operation.
2564
2565 If you use this function, you will need to wait for the completion of
2566 `epg-gpg-program' by using `epg-wait-for-completion' and call
2567 `epg-reset' to clear a temporary output file.
2568 If you are unsure, use synchronous version of this function
2569 `epg-delete-keys' instead."
2570 (epg-context-set-operation context 'delete-keys)
2571 (epg-context-set-result context nil)
2572 (epg--start context (cons (if allow-secret
2573 "--delete-secret-key"
2574 "--delete-key")
2575 (mapcar
2576 (lambda (key)
2577 (epg-sub-key-id
2578 (car (epg-key-sub-key-list key))))
2579 keys))))
2580
2581 (defun epg-delete-keys (context keys &optional allow-secret)
2582 "Delete KEYS from the key ring."
2583 (unwind-protect
2584 (progn
2585 (epg-start-delete-keys context keys allow-secret)
2586 (epg-wait-for-completion context)
2587 (let ((errors (epg-context-result-for context 'error)))
2588 (if errors
2589 (signal 'epg-error
2590 (list "Delete keys failed"
2591 (epg-errors-to-string errors))))))
2592 (epg-reset context)))
2593
2594 (defun epg-start-sign-keys (context keys &optional local)
2595 "Initiate a sign keys operation.
2596
2597 If you use this function, you will need to wait for the completion of
2598 `epg-gpg-program' by using `epg-wait-for-completion' and call
2599 `epg-reset' to clear a temporary output file.
2600 If you are unsure, use synchronous version of this function
2601 `epg-sign-keys' instead."
2602 (declare (obsolete nil "23.1"))
2603 (epg-context-set-operation context 'sign-keys)
2604 (epg-context-set-result context nil)
2605 (epg--start context (cons (if local
2606 "--lsign-key"
2607 "--sign-key")
2608 (mapcar
2609 (lambda (key)
2610 (epg-sub-key-id
2611 (car (epg-key-sub-key-list key))))
2612 keys))))
2613
2614 (defun epg-sign-keys (context keys &optional local)
2615 "Sign KEYS from the key ring."
2616 (declare (obsolete nil "23.1"))
2617 (unwind-protect
2618 (progn
2619 (epg-start-sign-keys context keys local)
2620 (epg-wait-for-completion context)
2621 (let ((errors (epg-context-result-for context 'error)))
2622 (if errors
2623 (signal 'epg-error
2624 (list "Sign keys failed"
2625 (epg-errors-to-string errors))))))
2626 (epg-reset context)))
2627
2628 (defun epg-start-generate-key (context parameters)
2629 "Initiate a key generation.
2630 PARAMETERS specifies parameters for the key.
2631
2632 If you use this function, you will need to wait for the completion of
2633 `epg-gpg-program' by using `epg-wait-for-completion' and call
2634 `epg-reset' to clear a temporary output file.
2635 If you are unsure, use synchronous version of this function
2636 `epg-generate-key-from-file' or `epg-generate-key-from-string' instead."
2637 (epg-context-set-operation context 'generate-key)
2638 (epg-context-set-result context nil)
2639 (if (epg-data-file parameters)
2640 (epg--start context (list "--batch" "--genkey" "--"
2641 (epg-data-file parameters)))
2642 (epg--start context '("--batch" "--genkey"))
2643 (if (eq (process-status (epg-context-process context)) 'run)
2644 (process-send-string (epg-context-process context)
2645 (epg-data-string parameters)))
2646 (if (eq (process-status (epg-context-process context)) 'run)
2647 (process-send-eof (epg-context-process context)))))
2648
2649 (defun epg-generate-key-from-file (context parameters)
2650 "Generate a new key pair.
2651 PARAMETERS is a file which tells how to create the key."
2652 (unwind-protect
2653 (progn
2654 (epg-start-generate-key context (epg-make-data-from-file parameters))
2655 (epg-wait-for-completion context)
2656 (let ((errors (epg-context-result-for context 'error)))
2657 (if errors
2658 (signal 'epg-error
2659 (list "Generate key failed"
2660 (epg-errors-to-string errors))))))
2661 (epg-reset context)))
2662
2663 (defun epg-generate-key-from-string (context parameters)
2664 "Generate a new key pair.
2665 PARAMETERS is a string which tells how to create the key."
2666 (unwind-protect
2667 (progn
2668 (epg-start-generate-key context (epg-make-data-from-string parameters))
2669 (epg-wait-for-completion context)
2670 (let ((errors (epg-context-result-for context 'error)))
2671 (if errors
2672 (signal 'epg-error
2673 (list "Generate key failed"
2674 (epg-errors-to-string errors))))))
2675 (epg-reset context)))
2676
2677 (defun epg--decode-percent-escape (string)
2678 (let ((index 0))
2679 (while (string-match "%\\(\\(%\\)\\|\\([0-9A-Fa-f][0-9A-Fa-f]\\)\\)"
2680 string index)
2681 (if (match-beginning 2)
2682 (setq string (replace-match "%" t t string)
2683 index (1- (match-end 0)))
2684 (setq string (replace-match
2685 (string (string-to-number (match-string 3 string) 16))
2686 t t string)
2687 index (- (match-end 0) 2))))
2688 string))
2689
2690 (defun epg--decode-hexstring (string)
2691 (let ((index 0))
2692 (while (eq index (string-match "[0-9A-Fa-f][0-9A-Fa-f]" string index))
2693 (setq string (replace-match (string (string-to-number
2694 (match-string 0 string) 16))
2695 t t string)
2696 index (1- (match-end 0))))
2697 string))
2698
2699 (defun epg--decode-quotedstring (string)
2700 (let ((index 0))
2701 (while (string-match "\\\\\\(\\([,=+<>#;\\\"]\\)\\|\
2702 \\([0-9A-Fa-f][0-9A-Fa-f]\\)\\)"
2703 string index)
2704 (if (match-beginning 2)
2705 (setq string (replace-match "\\2" t nil string)
2706 index (1- (match-end 0)))
2707 (if (match-beginning 3)
2708 (setq string (replace-match (string (string-to-number
2709 (match-string 0 string) 16))
2710 t t string)
2711 index (- (match-end 0) 2)))))
2712 string))
2713
2714 (defun epg-dn-from-string (string)
2715 "Parse STRING as LADPv3 Distinguished Names (RFC2253).
2716 The return value is an alist mapping from types to values."
2717 (let ((index 0)
2718 (length (length string))
2719 alist type value group)
2720 (while (< index length)
2721 (if (eq index (string-match "[ \t\n\r]*" string index))
2722 (setq index (match-end 0)))
2723 (if (eq index (string-match
2724 "\\([0-9]+\\(\\.[0-9]+\\)*\\)\[ \t\n\r]*=[ \t\n\r]*"
2725 string index))
2726 (setq type (match-string 1 string)
2727 index (match-end 0))
2728 (if (eq index (string-match "\\([0-9A-Za-z]+\\)[ \t\n\r]*=[ \t\n\r]*"
2729 string index))
2730 (setq type (match-string 1 string)
2731 index (match-end 0))))
2732 (unless type
2733 (error "Invalid type"))
2734 (if (eq index (string-match
2735 "\\([^,=+<>#;\\\"]\\|\\\\.\\)+"
2736 string index))
2737 (setq index (match-end 0)
2738 value (epg--decode-quotedstring (match-string 0 string)))
2739 (if (eq index (string-match "#\\([0-9A-Fa-f]+\\)" string index))
2740 (setq index (match-end 0)
2741 value (epg--decode-hexstring (match-string 1 string)))
2742 (if (eq index (string-match "\"\\([^\\\"]\\|\\\\.\\)*\""
2743 string index))
2744 (setq index (match-end 0)
2745 value (epg--decode-quotedstring
2746 (match-string 0 string))))))
2747 (if group
2748 (if (stringp (car (car alist)))
2749 (setcar alist (list (cons type value) (car alist)))
2750 (setcar alist (cons (cons type value) (car alist))))
2751 (if (consp (car (car alist)))
2752 (setcar alist (nreverse (car alist))))
2753 (setq alist (cons (cons type value) alist)
2754 type nil
2755 value nil))
2756 (if (eq index (string-match "[ \t\n\r]*\\([,;+]\\)" string index))
2757 (setq index (match-end 0)
2758 group (eq (aref string (match-beginning 1)) ?+))))
2759 (nreverse alist)))
2760
2761 (defun epg-decode-dn (alist)
2762 "Convert ALIST returned by `epg-dn-from-string' to a human readable form.
2763 Type names are resolved using `epg-dn-type-alist'."
2764 (mapconcat
2765 (lambda (rdn)
2766 (if (stringp (car rdn))
2767 (let ((entry (assoc (car rdn) epg-dn-type-alist)))
2768 (if entry
2769 (format "%s=%s" (cdr entry) (cdr rdn))
2770 (format "%s=%s" (car rdn) (cdr rdn))))
2771 (concat "(" (epg-decode-dn rdn) ")")))
2772 alist
2773 ", "))
2774
2775 (provide 'epg)
2776
2777 ;;; epg.el ends here