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