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