* epg.el (epg-start-sign): Fixed rule of the MODE argument.
[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 (defgroup epg ()
29   "The EasyPG Library")
30
31 (defcustom epg-gpg-program "gpg"
32   "The `gpg' executable."
33   :group 'epg
34   :type 'string)
35
36 (defcustom epg-gpgsm-program "gpgsm"
37   "The `gpgsm' executable."
38   :group 'epg
39   :type 'string)
40
41 (defconst epg-version-number "0.0.1")
42
43 (defvar epg-user-id nil
44   "GnuPG ID of your default identity.")
45
46 (defvar epg-user-id-alist nil
47   "An alist mapping from key ID to user ID.")
48
49 (defvar epg-read-point nil)
50 (defvar epg-pending-status-list nil)
51 (defvar epg-key-id nil)
52 (defvar epg-context nil)
53 (defvar epg-debug nil)
54 (defvar epg-debug-buffer nil)
55
56 ;; from gnupg/include/cipher.h
57 (defconst epg-cipher-algorithm-alist
58   '((0 . "NONE")
59     (1 . "IDEA")
60     (2 . "3DES")
61     (3 . "CAST5")
62     (4 . "BLOWFISH")
63     (7 . "AES")
64     (8 . "AES192")
65     (9 . "AES256")
66     (10 . "TWOFISH")
67     (110 . "DUMMY")))
68
69 ;; from gnupg/include/cipher.h
70 (defconst epg-pubkey-algorithm-alist
71   '((1 . "RSA")
72     (2 . "RSA_E")
73     (3 . "RSA_S")
74     (16 . "ELGAMAL_E")
75     (17 . "DSA")
76     (20 . "ELGAMAL")))
77
78 ;; from gnupg/include/cipher.h
79 (defconst epg-digest-algorithm-alist
80   '((1 . "MD5")
81     (2 . "SHA1")
82     (3 . "RMD160")
83     (8 . "SHA256")
84     (9 . "SHA384")
85     (10 . "SHA512")))
86
87 ;; from gnupg/include/cipher.h
88 (defconst epg-compress-algorithm-alist
89   '((0 . "NONE")
90     (1 . "ZIP")
91     (2 . "ZLIB")
92     (3 . "BZIP2")))
93
94 (defconst epg-invalid-recipients-alist
95   '((0 . "No specific reason given")
96     (1 . "Not Found")
97     (2 . "Ambigious specification")
98     (3 . "Wrong key usage")
99     (4 . "Key revoked")
100     (5 . "Key expired")
101     (6 . "No CRL known")
102     (7 . "CRL too old")
103     (8 . "Policy mismatch")
104     (9 . "Not a secret key")
105     (10 . "Key not trusted")))
106
107 (defconst epg-delete-problem-alist
108   '((1 . "No such key")
109     (2 . "Must delete secret key first")
110     (3 . "Ambigious specification")))
111
112 (defvar epg-key-validity-alist
113   '((?o . unknown)
114     (?i . invalid)
115     (?d . disabled)
116     (?r . revoked)
117     (?e . expired)
118     (?- . none)
119     (?q . undefined)
120     (?n . never)
121     (?m . marginal)
122     (?f . full)
123     (?u . ultimate)))
124
125 (defvar epg-key-capablity-alist
126   '((?e . encrypt)
127     (?s . sign)
128     (?c . certify)
129     (?a . authentication)))
130
131 (defvar epg-new-signature-type-alist
132   '((?D . detached)
133     (?C . clear)
134     (?S . normal)))
135
136 (defvar epg-dn-type-alist
137   '(("1.2.840.113549.1.9.1" . "EMail")
138     ("2.5.4.12" . "T")
139     ("2.5.4.42" . "GN")
140     ("2.5.4.4" . "SN")
141     ("0.2.262.1.10.7.20" . "NameDistinguisher")
142     ("2.5.4.16" . "ADDR")
143     ("2.5.4.15" . "BC")
144     ("2.5.4.13" . "D")
145     ("2.5.4.17" . "PostalCode")
146     ("2.5.4.65" . "Pseudo")
147     ("2.5.4.5" . "SerialNumber")))
148
149 (defvar epg-prompt-alist nil)
150
151 (defun epg-make-data-from-file (file)
152   "Make a data object from FILE."
153   (cons 'epg-data (vector file nil)))
154
155 (defun epg-make-data-from-string (string)
156   "Make a data object from STRING."
157   (cons 'epg-data (vector nil string)))
158
159 (defun epg-data-file (data)
160   "Return the file of DATA."
161   (unless (eq (car data) 'epg-data)
162     (signal 'wrong-type-argument (list 'epg-data-p data)))
163   (aref (cdr data) 0))
164
165 (defun epg-data-string (data)
166   "Return the string of DATA."
167   (unless (eq (car data) 'epg-data)
168     (signal 'wrong-type-argument (list 'epg-data-p data)))
169   (aref (cdr data) 1))
170
171 (defun epg-make-context (&optional protocol armor textmode include-certs
172                                    cipher-algorithm digest-algorithm
173                                    compress-algorithm)
174   "Return a context object."
175   (cons 'epg-context
176         (vector (or protocol 'OpenPGP) armor textmode include-certs
177                 cipher-algorithm digest-algorithm compress-algorithm
178                 #'epg-passphrase-callback-function
179                 #'epg-progress-callback-function
180                 nil nil nil nil)))
181
182 (defun epg-context-protocol (context)
183   "Return the protocol used within CONTEXT."
184   (unless (eq (car context) 'epg-context)
185     (signal 'wrong-type-argument (list 'epg-context-p context)))
186   (aref (cdr context) 0))
187
188 (defun epg-context-armor (context)
189   "Return t if the output shouled be ASCII armored in CONTEXT."
190   (unless (eq (car context) 'epg-context)
191     (signal 'wrong-type-argument (list 'epg-context-p context)))
192   (aref (cdr context) 1))
193
194 (defun epg-context-textmode (context)
195   "Return t if canonical text mode should be used in CONTEXT."
196   (unless (eq (car context) 'epg-context)
197     (signal 'wrong-type-argument (list 'epg-context-p context)))
198   (aref (cdr context) 2))
199
200 (defun epg-context-include-certs (context)
201   "Return how many certificates should be included in an S/MIME signed
202 message."
203   (unless (eq (car context) 'epg-context)
204     (signal 'wrong-type-argument (list 'epg-context-p context)))
205   (aref (cdr context) 3))
206
207 (defun epg-context-cipher-algorithm (context)
208   "Return the cipher algorithm in CONTEXT."
209   (unless (eq (car context) 'epg-context)
210     (signal 'wrong-type-argument (list 'epg-context-p context)))
211   (aref (cdr context) 4))
212
213 (defun epg-context-digest-algorithm (context)
214   "Return the digest algorithm in CONTEXT."
215   (unless (eq (car context) 'epg-context)
216     (signal 'wrong-type-argument (list 'epg-context-p context)))
217   (aref (cdr context) 5))
218
219 (defun epg-context-compress-algorithm (context)
220   "Return the compress algorithm in CONTEXT."
221   (unless (eq (car context) 'epg-context)
222     (signal 'wrong-type-argument (list 'epg-context-p context)))
223   (aref (cdr context) 6))
224
225 (defun epg-context-passphrase-callback (context)
226   "Return the function used to query passphrase."
227   (unless (eq (car context) 'epg-context)
228     (signal 'wrong-type-argument (list 'epg-context-p context)))
229   (aref (cdr context) 7))
230
231 (defun epg-context-progress-callback (context)
232   "Return the function which handles progress update."
233   (unless (eq (car context) 'epg-context)
234     (signal 'wrong-type-argument (list 'epg-context-p context)))
235   (aref (cdr context) 8))
236
237 (defun epg-context-signers (context)
238   "Return the list of key-id for singning."
239   (unless (eq (car context) 'epg-context)
240     (signal 'wrong-type-argument (list 'epg-context-p context)))
241   (aref (cdr context) 9))
242
243 (defun epg-context-process (context)
244   "Return the process object of `epg-gpg-program'.
245 This function is for internal use only."
246   (unless (eq (car context) 'epg-context)
247     (signal 'wrong-type-argument (list 'epg-context-p context)))
248   (aref (cdr context) 10))
249
250 (defun epg-context-output-file (context)
251   "Return the output file of `epg-gpg-program'.
252 This function is for internal use only."
253   (unless (eq (car context) 'epg-context)
254     (signal 'wrong-type-argument (list 'epg-context-p context)))
255   (aref (cdr context) 11))
256
257 (defun epg-context-result (context)
258   "Return the result of the previous cryptographic operation."
259   (unless (eq (car context) 'epg-context)
260     (signal 'wrong-type-argument (list 'epg-context-p context)))
261   (aref (cdr context) 12))
262
263 (defun epg-context-set-protocol (context protocol)
264   "Set the protocol used within CONTEXT."
265   (unless (eq (car context) 'epg-context)
266     (signal 'wrong-type-argument (list 'epg-context-p context)))
267   (aset (cdr context) 0 protocol))
268
269 (defun epg-context-set-armor (context armor)
270   "Specify if the output shouled be ASCII armored in CONTEXT."
271   (unless (eq (car context) 'epg-context)
272     (signal 'wrong-type-argument (list 'epg-context-p context)))
273   (aset (cdr context) 1 armor))
274
275 (defun epg-context-set-textmode (context textmode)
276   "Specify if canonical text mode should be used in CONTEXT."
277   (unless (eq (car context) 'epg-context)
278     (signal 'wrong-type-argument (list 'epg-context-p context)))
279   (aset (cdr context) 2 textmode))
280
281 (defun epg-context-set-include-certs (context include-certs)
282  "Set how many certificates should be included in an S/MIME signed message."
283   (unless (eq (car context) 'epg-context)
284     (signal 'wrong-type-argument (list 'epg-context-p context)))
285   (aset (cdr context) 3 include-certs))
286
287 (defun epg-context-set-cipher-algorithm (context cipher-algorithm)
288  "Set the cipher algorithm in CONTEXT."
289   (unless (eq (car context) 'epg-context)
290     (signal 'wrong-type-argument (list 'epg-context-p context)))
291   (aset (cdr context) 4 cipher-algorithm))
292
293 (defun epg-context-set-digest-algorithm (context digest-algorithm)
294  "Set the digest algorithm in CONTEXT."
295   (unless (eq (car context) 'epg-context)
296     (signal 'wrong-type-argument (list 'epg-context-p context)))
297   (aset (cdr context) 5 digest-algorithm))
298
299 (defun epg-context-set-compress-algorithm (context compress-algorithm)
300  "Set the compress algorithm in CONTEXT."
301   (unless (eq (car context) 'epg-context)
302     (signal 'wrong-type-argument (list 'epg-context-p context)))
303   (aset (cdr context) 6 compress-algorithm))
304
305 (defun epg-context-set-passphrase-callback (context
306                                                  passphrase-callback)
307   "Set the function used to query passphrase."
308   (unless (eq (car context) 'epg-context)
309     (signal 'wrong-type-argument (list 'epg-context-p context)))
310   (aset (cdr context) 7 passphrase-callback))
311
312 (defun epg-context-set-progress-callback (context progress-callback)
313   "Set the function which handles progress update."
314   (unless (eq (car context) 'epg-context)
315     (signal 'wrong-type-argument (list 'epg-context-p context)))
316   (aset (cdr context) 8 progress-callback))
317
318 (defun epg-context-set-signers (context signers)
319  "Set the list of key-id for singning."
320   (unless (eq (car context) 'epg-context)
321     (signal 'wrong-type-argument (list 'epg-context-p context)))
322   (aset (cdr context) 9 signers))
323
324 (defun epg-context-set-process (context process)
325   "Set the process object of `epg-gpg-program'.
326 This function is for internal use only."
327   (unless (eq (car context) 'epg-context)
328     (signal 'wrong-type-argument (list 'epg-context-p context)))
329   (aset (cdr context) 10 process))
330
331 (defun epg-context-set-output-file (context output-file)
332   "Set the output file of `epg-gpg-program'.
333 This function is for internal use only."
334   (unless (eq (car context) 'epg-context)
335     (signal 'wrong-type-argument (list 'epg-context-p context)))
336   (aset (cdr context) 11 output-file))
337
338 (defun epg-context-set-result (context result)
339   "Set the result of the previous cryptographic operation."
340   (unless (eq (car context) 'epg-context)
341     (signal 'wrong-type-argument (list 'epg-context-p context)))
342   (aset (cdr context) 12 result))
343
344 (defun epg-make-signature (status &optional key-id)
345   "Return a signature object."
346   (cons 'epg-signature (vector status key-id nil nil nil nil nil nil nil nil)))
347
348 (defun epg-signature-status (signature)
349   "Return the status code of SIGNATURE."
350   (unless (eq (car signature) 'epg-signature)
351     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
352   (aref (cdr signature) 0))
353
354 (defun epg-signature-key-id (signature)
355   "Return the key-id of SIGNATURE."
356   (unless (eq (car signature) 'epg-signature)
357     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
358   (aref (cdr signature) 1))
359
360 (defun epg-signature-validity (signature)
361   "Return the validity of SIGNATURE."
362   (unless (eq (car signature) 'epg-signature)
363     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
364   (aref (cdr signature) 2))
365
366 (defun epg-signature-fingerprint (signature)
367   "Return the fingerprint of SIGNATURE."
368   (unless (eq (car signature) 'epg-signature)
369     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
370   (aref (cdr signature) 3))
371
372 (defun epg-signature-creation-time (signature)
373   "Return the creation time of SIGNATURE."
374   (unless (eq (car signature) 'epg-signature)
375     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
376   (aref (cdr signature) 4))
377
378 (defun epg-signature-expiration-time (signature)
379   "Return the expiration time of SIGNATURE."
380   (unless (eq (car signature) 'epg-signature)
381     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
382   (aref (cdr signature) 5))
383
384 (defun epg-signature-pubkey-algorithm (signature)
385   "Return the public key algorithm of SIGNATURE."
386   (unless (eq (car signature) 'epg-signature)
387     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
388   (aref (cdr signature) 6))
389
390 (defun epg-signature-digest-algorithm (signature)
391   "Return the digest algorithm of SIGNATURE."
392   (unless (eq (car signature) 'epg-signature)
393     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
394   (aref (cdr signature) 7))
395
396 (defun epg-signature-class (signature)
397   "Return the class of SIGNATURE."
398   (unless (eq (car signature) 'epg-signature)
399     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
400   (aref (cdr signature) 8))
401
402 (defun epg-signature-version (signature)
403   "Return the version of SIGNATURE."
404   (unless (eq (car signature) 'epg-signature)
405     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
406   (aref (cdr signature) 9))
407
408 (defun epg-signature-set-status (signature status)
409  "Set the status code of SIGNATURE."
410   (unless (eq (car signature) 'epg-signature)
411     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
412   (aset (cdr signature) 0 status))
413
414 (defun epg-signature-set-key-id (signature key-id)
415  "Set the key-id of SIGNATURE."
416   (unless (eq (car signature) 'epg-signature)
417     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
418   (aset (cdr signature) 1 key-id))
419
420 (defun epg-signature-set-validity (signature validity)
421  "Set the validity of SIGNATURE."
422   (unless (eq (car signature) 'epg-signature)
423     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
424   (aset (cdr signature) 2 validity))
425
426 (defun epg-signature-set-fingerprint (signature fingerprint)
427  "Set the fingerprint of SIGNATURE."
428   (unless (eq (car signature) 'epg-signature)
429     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
430   (aset (cdr signature) 3 fingerprint))
431
432 (defun epg-signature-set-creation-time (signature creation-time)
433   "Set the creation time of SIGNATURE."
434   (unless (eq (car signature) 'epg-signature)
435     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
436   (aset (cdr signature) 4 creation-time))
437
438 (defun epg-signature-set-expiration-time (signature expiration-time)
439   "Set the expiration time of SIGNATURE."
440   (unless (eq (car signature) 'epg-signature)
441     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
442   (aset (cdr signature) 5 expiration-time))
443
444 (defun epg-signature-set-pubkey-algorithm (signature pubkey-algorithm)
445   "Set the public key algorithm of SIGNATURE."
446   (unless (eq (car signature) 'epg-signature)
447     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
448   (aset (cdr signature) 6 pubkey-algorithm))
449
450 (defun epg-signature-set-digest-algorithm (signature digest-algorithm)
451   "Set the digest algorithm of SIGNATURE."
452   (unless (eq (car signature) 'epg-signature)
453     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
454   (aset (cdr signature) 7 digest-algorithm))
455
456 (defun epg-signature-set-class (signature class)
457   "Set the class of SIGNATURE."
458   (unless (eq (car signature) 'epg-signature)
459     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
460   (aset (cdr signature) 8 class))
461
462 (defun epg-signature-set-version (signature version)
463   "Set the version of SIGNATURE."
464   (unless (eq (car signature) 'epg-signature)
465     (signal 'wrong-type-argument (list 'epg-signature-p signature)))
466   (aset (cdr signature) 9 version))
467
468 (defun epg-make-new-signature (type pubkey-algorithm digest-algorithm
469                                     class creation-time fingerprint)
470   "Return a new signature object."
471   (cons 'epg-new-signature (vector type pubkey-algorithm digest-algorithm
472                                    class creation-time fingerprint)))
473
474 (defun epg-new-signature-type (new-signature)
475   "Return the type of NEW-SIGNATURE."
476   (unless (eq (car new-signature) 'epg-new-signature)
477     (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
478   (aref (cdr new-signature) 0))
479
480 (defun epg-new-signature-pubkey-algorithm (new-signature)
481   "Return the public key algorithm of NEW-SIGNATURE."
482   (unless (eq (car new-signature) 'epg-new-signature)
483     (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
484   (aref (cdr new-signature) 1))
485
486 (defun epg-new-signature-digest-algorithm (new-signature)
487   "Return the digest algorithm of NEW-SIGNATURE."
488   (unless (eq (car new-signature) 'epg-new-signature)
489     (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
490   (aref (cdr new-signature) 2))
491
492 (defun epg-new-signature-class (new-signature)
493   "Return the class of NEW-SIGNATURE."
494   (unless (eq (car new-signature) 'epg-new-signature)
495     (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
496   (aref (cdr new-signature) 3))
497
498 (defun epg-new-signature-creation-time (new-signature)
499   "Return the creation time of NEW-SIGNATURE."
500   (unless (eq (car new-signature) 'epg-new-signature)
501     (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
502   (aref (cdr new-signature) 4))
503
504 (defun epg-new-signature-fingerprint (new-signature)
505   "Return the fingerprint of NEW-SIGNATURE."
506   (unless (eq (car new-signature) 'epg-new-signature)
507     (signal 'wrong-type-argument (list 'epg-new-signature-p new-signature)))
508   (aref (cdr new-signature) 5))
509
510 (defun epg-make-key (owner-trust)
511   "Return a key object."
512   (cons 'epg-key (vector owner-trust nil nil)))
513
514 (defun epg-key-owner-trust (key)
515   "Return the owner trust of KEY."
516   (unless (eq (car key) 'epg-key)
517     (signal 'wrong-type-argument (list 'epg-key-p key)))
518   (aref (cdr key) 0))
519
520 (defun epg-key-sub-key-list (key)
521   "Return the sub key list of KEY."
522   (unless (eq (car key) 'epg-key)
523     (signal 'wrong-type-argument (list 'epg-key-p key)))
524   (aref (cdr key) 1))
525
526 (defun epg-key-user-id-list (key)
527   "Return the user ID list of KEY."
528   (unless (eq (car key) 'epg-key)
529     (signal 'wrong-type-argument (list 'epg-key-p key)))
530   (aref (cdr key) 2))
531
532 (defun epg-key-set-sub-key-list (key sub-key-list)
533   "Set the sub key list of KEY."
534   (unless (eq (car key) 'epg-key)
535     (signal 'wrong-type-argument (list 'epg-key-p key)))
536   (aset (cdr key) 1 sub-key-list))
537
538 (defun epg-key-set-user-id-list (key user-id-list)
539   "Set the user ID list of KEY."
540   (unless (eq (car key) 'epg-key)
541     (signal 'wrong-type-argument (list 'epg-key-p key)))
542   (aset (cdr key) 2 user-id-list))
543
544 (defun epg-make-sub-key (validity capability secret algorithm length id
545                                   creation-time expiration-time)
546   "Return a sub key object."
547   (cons 'epg-sub-key
548         (vector validity capability secret algorithm length id creation-time
549                 expiration-time nil)))
550
551 (defun epg-sub-key-validity (sub-key)
552   "Return the validity of SUB-KEY."
553   (unless (eq (car sub-key) 'epg-sub-key)
554     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
555   (aref (cdr sub-key) 0))
556
557 (defun epg-sub-key-capability (sub-key)
558   "Return the capability of SUB-KEY."
559   (unless (eq (car sub-key) 'epg-sub-key)
560     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
561   (aref (cdr sub-key) 1))
562
563 (defun epg-sub-key-secret (sub-key)
564   "Return non-nil if SUB-KEY is a secret key."
565   (unless (eq (car sub-key) 'epg-sub-key)
566     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
567   (aref (cdr sub-key) 2))
568
569 (defun epg-sub-key-algorithm (sub-key)
570   "Return the algorithm of SUB-KEY."
571   (unless (eq (car sub-key) 'epg-sub-key)
572     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
573   (aref (cdr sub-key) 3))
574
575 (defun epg-sub-key-length (sub-key)
576   "Return the length of SUB-KEY."
577   (unless (eq (car sub-key) 'epg-sub-key)
578     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
579   (aref (cdr sub-key) 4))
580
581 (defun epg-sub-key-id (sub-key)
582   "Return the ID of SUB-KEY."
583   (unless (eq (car sub-key) 'epg-sub-key)
584     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
585   (aref (cdr sub-key) 5))
586
587 (defun epg-sub-key-creation-time (sub-key)
588   "Return the creation time of SUB-KEY."
589   (unless (eq (car sub-key) 'epg-sub-key)
590     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
591   (aref (cdr sub-key) 6))
592
593 (defun epg-sub-key-expiration-time (sub-key)
594   "Return the expiration time of SUB-KEY."
595   (unless (eq (car sub-key) 'epg-sub-key)
596     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
597   (aref (cdr sub-key) 7))
598
599 (defun epg-sub-key-fingerprint (sub-key)
600   "Return the fingerprint of SUB-KEY."
601   (unless (eq (car sub-key) 'epg-sub-key)
602     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
603   (aref (cdr sub-key) 8))
604
605 (defun epg-sub-key-set-fingerprint (sub-key fingerprint)
606   "Set the fingerprint of SUB-KEY.
607 This function is for internal use only."
608   (unless (eq (car sub-key) 'epg-sub-key)
609     (signal 'wrong-type-argument (list 'epg-sub-key-p sub-key)))
610   (aset (cdr sub-key) 8 fingerprint))
611
612 (defun epg-make-user-id (validity string)
613   "Return a user ID object."
614   (cons 'epg-user-id (vector validity string nil)))
615
616 (defun epg-user-id-validity (user-id)
617   "Return the validity of USER-ID."
618   (unless (eq (car user-id) 'epg-user-id)
619     (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
620   (aref (cdr user-id) 0))
621
622 (defun epg-user-id-string (user-id)
623   "Return the name of USER-ID."
624   (unless (eq (car user-id) 'epg-user-id)
625     (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
626   (aref (cdr user-id) 1))
627
628 (defun epg-user-id-signature-list (user-id)
629   "Return the signature list of USER-ID."
630   (unless (eq (car user-id) 'epg-user-id)
631     (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
632   (aref (cdr user-id) 2))
633
634 (defun epg-user-id-set-signature-list (user-id signature-list)
635   "Set the signature list of USER-ID."
636   (unless (eq (car user-id) 'epg-user-id)
637     (signal 'wrong-type-argument (list 'epg-user-id-p user-id)))
638   (aset (cdr user-id) 2 signature-list))
639
640 (defun epg-context-result-for (context name)
641   "Return the result of CONTEXT associated with NAME."
642   (cdr (assq name (epg-context-result context))))
643
644 (defun epg-context-set-result-for (context name value)
645   "Set the result of CONTEXT associated with NAME to VALUE."
646   (let* ((result (epg-context-result context))
647          (entry (assq name result)))
648     (if entry
649         (setcdr entry value)
650       (epg-context-set-result context (cons (cons name value) result)))))
651
652 (defun epg-signature-to-string (signature)
653   "Convert SIGNATURE to a human readable string."
654   (let ((user-id (cdr (assoc (epg-signature-key-id signature)
655                              epg-user-id-alist))))
656     (concat
657      (cond ((eq (epg-signature-status signature) 'good)
658             "Good signature from ")
659            ((eq (epg-signature-status signature) 'bad)
660             "Bad signature from ")
661            ((eq (epg-signature-status signature) 'expired)
662             "Expired signature from ")
663            ((eq (epg-signature-status signature) 'expired-key)
664             "Signature made by expired key ")
665            ((eq (epg-signature-status signature) 'revoked-key)
666             "Signature made by revoked key ")
667            ((eq (epg-signature-status signature) 'no-pubkey)
668             "No public key for "))
669      (epg-signature-key-id signature)
670      " "
671      (if user-id
672          (concat (if (stringp user-id)
673                      user-id
674                    (epg-decode-dn user-id))
675                  " ")
676        "")
677      (if (epg-signature-validity signature)
678          (format "(trust %s)"  (epg-signature-validity signature))
679        ""))))
680
681 (defun epg-verify-result-to-string (verify-result)
682   "Convert VERIFY-RESULT to a human readable string."
683   (mapconcat #'epg-signature-to-string verify-result "\n"))
684
685 (defun epg-new-signature-to-string (new-signature)
686   "Convert NEW-SIGNATURE to a human readable string."
687   (concat
688    (cond ((eq (epg-new-signature-type new-signature) 'detached)
689           "Detached signature ")
690          ((eq (epg-new-signature-type new-signature) 'clear)
691           "Clear text signature ")
692          (t
693           "Signature "))
694    (cdr (assq (epg-new-signature-pubkey-algorithm new-signature)
695               epg-pubkey-algorithm-alist))
696    "/"
697    (cdr (assq (epg-new-signature-digest-algorithm new-signature)
698               epg-digest-algorithm-alist))
699    " "
700    (format "%02X " (epg-new-signature-class new-signature))
701    (epg-new-signature-fingerprint new-signature)))
702
703 (defun epg-start (context args)
704   "Start `epg-gpg-program' in a subprocess with given ARGS."
705   (if (and (epg-context-process context)
706            (eq (process-status (epg-context-process context)) 'run))
707       (error "%s is already running in this context"
708              (if (eq (epg-context-protocol context) 'CMS)
709                  epg-gpgsm-program
710                epg-gpg-program)))
711   (let* ((args (append (list "--no-tty"
712                              "--status-fd" "1"
713                              "--yes")
714                        (unless (eq (epg-context-protocol context) 'CMS)
715                          (list "--command-fd" "0"))
716                        (if (epg-context-armor context) '("--armor"))
717                        (if (epg-context-textmode context) '("--textmode"))
718                        (if (epg-context-output-file context)
719                            (list "--output" (epg-context-output-file context)))
720                        args))
721          (coding-system-for-write 'binary)
722          process-connection-type
723          (orig-mode (default-file-modes))
724          (buffer (generate-new-buffer " *epg*"))
725          process)
726     (if epg-debug
727         (save-excursion
728           (unless epg-debug-buffer
729             (setq epg-debug-buffer (generate-new-buffer " *epg-debug*")))
730           (set-buffer epg-debug-buffer)
731           (goto-char (point-max))
732           (insert (format "%s %s\n"
733                           (if (eq (epg-context-protocol context) 'CMS)
734                               epg-gpgsm-program
735                            epg-gpg-program)
736                           (mapconcat #'identity args " ")))))
737     (with-current-buffer buffer
738       (make-local-variable 'epg-read-point)
739       (setq epg-read-point (point-min))
740       (make-local-variable 'epg-pending-status-list)
741       (setq epg-pending-status-list nil)
742       (make-local-variable 'epg-key-id)
743       (setq epg-key-id nil)
744       (make-local-variable 'epg-context)
745       (setq epg-context context))
746     (unwind-protect
747         (progn
748           (set-default-file-modes 448)
749           (setq process
750                 (apply #'start-process "epg" buffer
751                        (if (eq (epg-context-protocol context) 'CMS)
752                            epg-gpgsm-program
753                          epg-gpg-program)
754                        args)))
755       (set-default-file-modes orig-mode))
756     (set-process-filter process #'epg-process-filter)
757     (epg-context-set-process context process)))
758
759 (defun epg-process-filter (process input)
760   (if epg-debug
761       (save-excursion
762         (unless epg-debug-buffer
763           (setq epg-debug-buffer (generate-new-buffer " *epg-debug*")))
764         (set-buffer epg-debug-buffer)
765         (goto-char (point-max))
766         (insert input)))
767   (if (buffer-live-p (process-buffer process))
768       (save-excursion
769         (set-buffer (process-buffer process))
770         (goto-char (point-max))
771         (insert input)
772         (goto-char epg-read-point)
773         (beginning-of-line)
774         (while (looking-at ".*\n")      ;the input line finished
775           (save-excursion
776             (if (looking-at "\\[GNUPG:] \\([A-Z_]+\\) ?\\(.*\\)")
777                 (let* ((status (match-string 1))
778                        (string (match-string 2))
779                        (symbol (intern-soft (concat "epg-status-" status))))
780                   (if (member status epg-pending-status-list)
781                       (setq epg-pending-status-list nil))
782                   (if (and symbol
783                            (fboundp symbol))
784                       (funcall symbol process string)))))
785           (forward-line))
786         (setq epg-read-point (point)))))
787
788 (defun epg-read-output (context)
789   "Read the output file CONTEXT and return the content as a string."
790   (with-temp-buffer
791     (if (fboundp 'set-buffer-multibyte)
792         (set-buffer-multibyte nil))
793     (if (file-exists-p (epg-context-output-file context))
794         (let ((coding-system-for-read 'binary))
795           (insert-file-contents (epg-context-output-file context))
796           (buffer-string)))))
797
798 (defun epg-wait-for-status (context status-list)
799   "Wait until one of elements in STATUS-LIST arrives."
800   (with-current-buffer (process-buffer (epg-context-process context))
801     (setq epg-pending-status-list status-list)
802     (while (and (eq (process-status (epg-context-process context)) 'run)
803                 epg-pending-status-list)
804       (accept-process-output (epg-context-process context) 0 1))))
805
806 (defun epg-wait-for-completion (context)
807   "Wait until the `epg-gpg-program' process completes."
808   (while (eq (process-status (epg-context-process context)) 'run)
809     (accept-process-output (epg-context-process context) 0 1)))
810
811 (defun epg-reset (context)
812   "Reset the CONTEXT."
813   (if (and (epg-context-process context)
814            (buffer-live-p (process-buffer (epg-context-process context))))
815       (kill-buffer (process-buffer (epg-context-process context))))
816   (epg-context-set-process context nil))
817
818 (defun epg-delete-output-file (context)
819   "Delete the output file of CONTEXT."
820   (if (and (epg-context-output-file context)
821            (file-exists-p (epg-context-output-file context)))
822       (delete-file (epg-context-output-file context))))
823
824 (defun epg-status-USERID_HINT (process string)
825   (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
826       (let* ((key-id (match-string 1 string))
827              (user-id (match-string 2 string))
828              (entry (assoc key-id epg-user-id-alist)))
829         (if entry
830             (setcdr entry user-id)
831           (setq epg-user-id-alist (cons (cons key-id user-id)
832                                         epg-user-id-alist))))))
833
834 (defun epg-status-NEED_PASSPHRASE (process string)
835   (if (string-match "\\`\\([^ ]+\\)" string)
836       (setq epg-key-id (match-string 1 string))))
837
838 (defun epg-status-NEED_PASSPHRASE_SYM (process string)
839   (setq epg-key-id 'SYM))
840
841 (defun epg-status-NEED_PASSPHRASE_PIN (process string)
842   (setq epg-key-id 'PIN))
843
844 (defun epg-status-GET_HIDDEN (process string)
845   (if (and epg-key-id
846            (string-match "\\`passphrase\\." string))
847       (let (inhibit-quit
848             passphrase
849             passphrase-with-new-line)
850         (unwind-protect
851             (condition-case nil
852                 (progn
853                   (setq passphrase
854                         (funcall
855                          (if (consp (epg-context-passphrase-callback
856                                      epg-context))
857                              (car (epg-context-passphrase-callback
858                                    epg-context))
859                            (epg-context-passphrase-callback epg-context))
860                          epg-context
861                          epg-key-id
862                          (if (consp (epg-context-passphrase-callback
863                                      epg-context))
864                              (cdr (epg-context-passphrase-callback
865                                    epg-context)))))
866                   (when passphrase
867                     (setq passphrase-with-new-line (concat passphrase "\n"))
868                     (fillarray passphrase 0)
869                     (setq passphrase nil)
870                     (process-send-string process passphrase-with-new-line)))
871               (quit
872                (epg-context-set-result-for
873                 epg-context 'error
874                 (cons '(quit)
875                       (epg-context-result-for epg-context 'error)))
876                (delete-process process)))
877           (if passphrase
878               (fillarray passphrase 0))
879           (if passphrase-with-new-line
880               (fillarray passphrase-with-new-line 0))))))
881
882 (defun epg-status-GET_BOOL (process string)
883   (let ((entry (assoc string epg-prompt-alist))
884         inhibit-quit)
885     (condition-case nil
886       (if (y-or-n-p (if entry (cdr entry) (concat string "? ")))
887           (process-send-string process "y\n")
888         (process-send-string process "n\n"))
889       (quit
890        (epg-context-set-result-for
891         epg-context 'error
892         (cons '(quit)
893               (epg-context-result-for epg-context 'error)))
894        (delete-process process)))))
895
896 (defun epg-status-GET_LINE (process string)
897   (let ((entry (assoc string epg-prompt-alist))
898         inhibit-quit)
899     (condition-case nil
900         (process-send-string
901          process
902          (concat (read-string (if entry (cdr entry) (concat string ": ")))
903                  "\n"))
904       (quit
905        (epg-context-set-result-for
906         epg-context 'error
907         (cons '(quit)
908               (epg-context-result-for epg-context 'error)))
909        (delete-process process)))))
910
911 (defun epg-status-*SIG (status string)
912   (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
913       (let* ((key-id (match-string 1 string))
914              (user-id (match-string 2 string))
915              (entry (assoc key-id epg-user-id-alist)))
916         (epg-context-set-result-for
917          epg-context
918          'verify
919          (cons (epg-make-signature status key-id)
920                (epg-context-result-for epg-context 'verify)))
921         (if (eq (epg-context-protocol epg-context) 'CMS)
922             (condition-case nil
923                 (setq user-id (epg-dn-from-string user-id))
924               (error)))
925         (if entry
926             (setcdr entry user-id)
927           (setq epg-user-id-alist
928                 (cons (cons key-id user-id) epg-user-id-alist))))
929     (epg-context-set-result-for
930      epg-context
931      'verify
932      (cons (epg-make-signature status)
933            (epg-context-result-for epg-context 'verify)))))
934
935 (defun epg-status-GOODSIG (process string)
936   (epg-status-*SIG 'good string))
937
938 (defun epg-status-EXPSIG (process string)
939   (epg-status-*SIG 'expired string))
940
941 (defun epg-status-EXPKEYSIG (process string)
942   (epg-status-*SIG 'expired-key string))
943
944 (defun epg-status-REVKEYSIG (process string)
945   (epg-status-*SIG 'revoked-key string))
946
947 (defun epg-status-BADSIG (process string)
948   (epg-status-*SIG 'bad string))
949
950 (defun epg-status-NO_PUBKEY (process string)
951   (epg-context-set-result-for
952      epg-context
953      'verify
954      (cons (epg-make-signature 'no-pubkey string)
955            (epg-context-result-for epg-context 'verify))))
956
957 (defun epg-status-ERRSIG (process string)
958   (let ((signatures (car (epg-context-result-for epg-context 'verify))))
959     (unless signatures
960       (setq signatures (list (epg-make-signature 'error)))
961       (epg-context-set-result-for epg-context 'verify signatures))
962     (when (and (not (eq (epg-signature-status (car signatures)) 'good))
963                (string-match "\\`\\([^ ]+\\) \\([0-9]+\\) \\([0-9]+\\) \
964 \\([0-9A-Fa-f][0-9A-Fa-f]\\) \\([^ ]+\\) \\([0-9]+\\)"
965                              string))
966       (epg-signature-set-key-id
967        (car signatures)
968        (match-string 1 string))
969       (epg-signature-set-pubkey-algorithm
970        (car signatures)
971        (string-to-number (match-string 2 string)))
972       (epg-signature-set-digest-algorithm
973        (car signatures)
974        (string-to-number (match-string 3 string)))
975       (epg-signature-set-class
976        (car signatures)
977        (string-to-number (match-string 4 string) 16))
978       (epg-signature-set-creation-time
979        (car signatures)
980        (match-string 5 string)))))
981
982 (defun epg-status-VALIDSIG (process string)
983   (let ((signature (car (epg-context-result-for epg-context 'verify))))
984     (when (and signature
985                (eq (epg-signature-status signature) 'good)
986                (string-match "\\`\\([^ ]+\\) [^ ]+ \\([^ ]+\\) \\([^ ]+\\) \
987 \\([0-9]+\\) [^ ]+ \\([0-9]+\\) \\([0-9]+\\) \\([0-9A-Fa-f][0-9A-Fa-f]\\) \
988 \\(.*\\)"
989                            string))
990       (epg-signature-set-fingerprint
991        signature
992        (match-string 1 string))
993       (epg-signature-set-creation-time
994        signature
995        (match-string 2 string))
996       (epg-signature-set-expiration-time
997        signature
998        (match-string 3 string))
999       (epg-signature-set-version
1000        signature
1001        (string-to-number (match-string 4 string)))
1002       (epg-signature-set-pubkey-algorithm
1003        signature 
1004        (string-to-number (match-string 5 string)))
1005       (epg-signature-set-digest-algorithm
1006        signature
1007        (string-to-number (match-string 6 string)))
1008       (epg-signature-set-class
1009        signature
1010        (string-to-number (match-string 7 string) 16)))))
1011
1012 (defun epg-status-TRUST_UNDEFINED (process string)
1013   (let ((signature (car (epg-context-result-for epg-context 'verify))))
1014     (if (and signature
1015              (eq (epg-signature-status signature) 'good))
1016         (epg-signature-set-validity signature 'undefined))))
1017
1018 (defun epg-status-TRUST_NEVER (process string)
1019   (let ((signature (car (epg-context-result-for epg-context 'verify))))
1020     (if (and signature
1021              (eq (epg-signature-status signature) 'good))
1022         (epg-signature-set-validity signature 'never))))
1023
1024 (defun epg-status-TRUST_MARGINAL (process string)
1025   (let ((signature (car (epg-context-result-for epg-context 'verify))))
1026     (if (and signature
1027              (eq (epg-signature-status signature) 'marginal))
1028         (epg-signature-set-validity signature 'marginal))))
1029
1030 (defun epg-status-TRUST_FULLY (process string)
1031   (let ((signature (car (epg-context-result-for epg-context 'verify))))
1032     (if (and signature
1033              (eq (epg-signature-status signature) 'good))
1034         (epg-signature-set-validity signature 'full))))
1035
1036 (defun epg-status-TRUST_ULTIMATE (process string)
1037   (let ((signature (car (epg-context-result-for epg-context 'verify))))
1038     (if (and signature
1039              (eq (epg-signature-status signature) 'good))
1040         (epg-signature-set-validity signature 'ultimate))))
1041
1042 (defun epg-status-PROGRESS (process string)
1043   (if (string-match "\\`\\([^ ]+\\) \\([^ ]\\) \\([0-9]+\\) \\([0-9]+\\)"
1044                     string)
1045       (funcall (if (consp (epg-context-progress-callback epg-context))
1046                    (car (epg-context-progress-callback epg-context))
1047                  (epg-context-progress-callback epg-context))
1048                epg-context
1049                (match-string 1 string)
1050                (match-string 2 string)
1051                (string-to-number (match-string 3 string))
1052                (string-to-number (match-string 4 string))
1053                (if (consp (epg-context-progress-callback epg-context))
1054                    (cdr (epg-context-progress-callback epg-context))))))
1055
1056 (defun epg-status-DECRYPTION_FAILED (process string)
1057   (epg-context-set-result-for
1058    epg-context 'error
1059    (cons '(decryption-failed)
1060          (epg-context-result-for epg-context 'error))))
1061
1062 (defun epg-status-NODATA (process string)
1063   (epg-context-set-result-for
1064    epg-context 'error
1065    (cons (cons 'no-data (string-to-number string))
1066          (epg-context-result-for epg-context 'error))))
1067
1068 (defun epg-status-UNEXPECTED (process string)
1069   (epg-context-set-result-for
1070    epg-context 'error
1071    (cons (cons 'unexpected (string-to-number string))
1072          (epg-context-result-for epg-context 'error))))
1073
1074 (defun epg-status-KEYEXPIRED (process string)
1075   (epg-context-set-result-for
1076    epg-context 'error
1077    (cons (cons 'key-expired string)
1078          (epg-context-result-for epg-context 'error))))
1079
1080 (defun epg-status-KEYREVOKED (process string)
1081   (epg-context-set-result-for
1082    epg-context 'error
1083    (cons '(key-revoked)
1084          (epg-context-result-for epg-context 'error))))
1085
1086 (defun epg-status-BADARMOR (process string)
1087   (epg-context-set-result-for
1088    epg-context 'error
1089    (cons '(bad-armor)
1090          (epg-context-result-for epg-context 'error))))
1091
1092 (defun epg-status-INV_RECP (process string)
1093   (if (string-match "\\`\\([0-9]+\\) \\(.*\\)" string)
1094       (epg-context-set-result-for
1095        epg-context 'error
1096        (cons (list 'invalid-recipient
1097                    (string-to-number (match-string 1 string))
1098                    (match-string 2 string))
1099              (epg-context-result-for epg-context 'error)))))
1100
1101 (defun epg-status-NO_RECP (process string)
1102   (epg-context-set-result-for
1103    epg-context 'error
1104    (cons '(no-recipients)
1105          (epg-context-result-for epg-context 'error))))
1106
1107 (defun epg-status-DELETE_PROBLEM (process string)
1108   (if (string-match "\\`\\([0-9]+\\)" string)
1109       (epg-context-set-result-for
1110        epg-context 'error
1111        (cons (cons 'delete-problem (string-to-number (match-string 1 string)))
1112              (epg-context-result-for epg-context 'error)))))
1113
1114 (defun epg-status-SIG_CREATED (process string)
1115   (if (string-match "\\`\\([DCS]\\) \\([0-9]+\\) \\([0-9]+\\) \
1116 \\([0-9A-Fa-F][0-9A-Fa-F]\\) \\(.*\\) " string)
1117       (epg-context-set-result-for
1118        epg-context 'sign
1119        (cons (epg-make-new-signature
1120               (cdr (assq (aref (match-string 1 string) 0)
1121                          epg-new-signature-type-alist))
1122               (string-to-number (match-string 2 string))
1123               (string-to-number (match-string 3 string))
1124               (string-to-number (match-string 4 string) 16)
1125               (match-string 5 string)
1126               (substring string (match-end 0)))
1127              (epg-context-result-for epg-context 'sign)))))
1128
1129 (defun epg-status-KEY_CREATED (process string)
1130   (if (string-match "\\`\\([BPS]\\) \\([^ ]+\\)" string)
1131       (epg-context-set-result-for
1132        epg-context 'generate-key
1133        (cons (list (cons 'type (string-to-char (match-string 1 string)))
1134                    (cons 'fingerprint (match-string 2 string)))
1135              (epg-context-result-for epg-context 'generate-key)))))
1136
1137 (defun epg-status-KEY_NOT_CREATED (process string)
1138   (epg-context-set-result-for
1139    epg-context 'error
1140    (cons '(key-not-created)
1141          (epg-context-result-for epg-context 'error))))
1142
1143 (defun epg-passphrase-callback-function (context key-id handback)
1144   (read-passwd
1145    (if (eq key-id 'SYM)
1146        "Passphrase for symmetric encryption: "
1147      (if (eq key-id 'PIN)
1148          "Passphrase for PIN: "
1149        (let ((entry (assoc key-id epg-user-id-alist)))
1150          (if entry
1151              (format "Passphrase for %s %s: " key-id (cdr entry))
1152            (format "Passphrase for %s: " key-id)))))))
1153
1154 (defun epg-progress-callback-function (context what char current total
1155                                                handback)
1156   (message "%s: %d%%/%d%%" what current total))
1157
1158 (defun epg-configuration ()
1159   "Return a list of internal configuration parameters of `epg-gpg-program'."
1160   (let (config type)
1161     (with-temp-buffer
1162       (apply #'call-process epg-gpg-program nil (list t nil) nil
1163              '("--with-colons" "--list-config"))
1164       (goto-char (point-min))
1165       (while (re-search-forward "^cfg:\\([^:]+\\):\\(.*\\)" nil t)
1166         (setq type (intern (match-string 1))
1167               config (cons (cons type
1168                                  (if (memq type
1169                                            '(pubkey cipher digest compress))
1170                                      (mapcar #'string-to-number
1171                                              (delete "" (split-string
1172                                                          (match-string 2)
1173                                                          ";")))
1174                                    (match-string 2)))
1175                            config))))
1176     config))
1177
1178 (defun epg-list-keys-1 (context name mode)
1179   (let ((args (append (list "--with-colons" "--no-greeting" "--batch"
1180                             "--with-fingerprint"
1181                             "--with-fingerprint"
1182                             (if (or (eq mode t) (eq mode 'secret))
1183                                 "--list-secret-keys"
1184                               (if mode
1185                                   "--list-sigs"
1186                                 "--list-keys")))
1187                       (unless (eq (epg-context-protocol context) 'CMS)
1188                         '("--fixed-list-mode"))
1189                       (if name (list name))))
1190         keys string field index)
1191     (with-temp-buffer
1192       (apply #'call-process
1193              (if (eq (epg-context-protocol context) 'CMS)
1194                  epg-gpgsm-program
1195                epg-gpg-program)
1196              nil (list t nil) nil args)
1197       (goto-char (point-min))
1198       (while (re-search-forward "^[a-z][a-z][a-z]:.*" nil t)
1199         (setq keys (cons (make-vector 15 nil) keys)
1200               string (match-string 0)
1201               index 0
1202               field 0)
1203         (while (eq index
1204                    (string-match "\\([^:]+\\)?:" string index))
1205           (setq index (match-end 0))
1206           (aset (car keys) field (match-string 1 string))
1207           (setq field (1+ field))))
1208       (nreverse keys))))
1209
1210 (defun epg-make-sub-key-1 (line)
1211   (epg-make-sub-key
1212    (if (aref line 1)
1213        (cdr (assq (string-to-char (aref line 1)) epg-key-validity-alist)))
1214    (delq nil
1215          (mapcar (lambda (char) (cdr (assq char epg-key-capablity-alist)))
1216                  (aref line 11)))
1217    (member (aref line 0) '("sec" "ssb"))
1218    (string-to-number (aref line 3))
1219    (string-to-number (aref line 2))
1220    (aref line 4)
1221    (aref line 5)
1222    (aref line 6)))
1223
1224 (defun epg-list-keys-postprocess-one-key (key)
1225   (let (key-id user-id-string entry)
1226     (epg-key-set-sub-key-list
1227      key
1228      (nreverse (epg-key-sub-key-list key)))
1229     (epg-key-set-user-id-list
1230      key
1231      (nreverse (epg-key-user-id-list key)))
1232     (setq key-id
1233           (epg-sub-key-id (car (epg-key-sub-key-list key)))
1234           user-id-string
1235           (epg-user-id-string (car (epg-key-user-id-list key)))
1236           entry (assoc key-id epg-user-id-alist))
1237     (if entry
1238         (setcdr entry user-id-string)
1239       (setq epg-user-id-alist (cons (cons key-id user-id-string)
1240                                     epg-user-id-alist)))))
1241
1242 (defun epg-list-keys (context &optional name mode)
1243   "Return a list of epg-key objects matched with NAME.
1244 If MODE is nil, only public keyring should be searched.
1245 If MODE is t or 'secret, only secret keyring should be searched. 
1246 Otherwise, only public keyring should be searched and the key
1247 signatures should be included."
1248   (let ((lines (epg-list-keys-1 context name mode))
1249         keys cert)
1250     (while lines
1251       (cond
1252        ((member (aref (car lines) 0) '("pub" "sec" "crt" "crs"))
1253         (if (car keys)
1254             (epg-list-keys-postprocess-one-key (car keys)))
1255         (setq cert (member (aref (car lines) 0) '("crt" "crs"))
1256               keys (cons (epg-make-key
1257                           (if (aref (car lines) 8)
1258                               (cdr (assq (string-to-char (aref (car lines) 8))
1259                                          epg-key-validity-alist))))
1260                          keys))
1261         (epg-key-set-sub-key-list
1262          (car keys)
1263          (cons (epg-make-sub-key-1 (car lines))
1264                (epg-key-sub-key-list (car keys)))))
1265        ((member (aref (car lines) 0) '("sub" "ssb"))
1266         (epg-key-set-sub-key-list
1267          (car keys)
1268          (cons (epg-make-sub-key-1 (car lines))
1269                (epg-key-sub-key-list (car keys)))))
1270        ((equal (aref (car lines) 0) "uid")
1271         (epg-key-set-user-id-list
1272          (car keys)
1273          (cons (epg-make-user-id
1274                 (if (aref (car lines) 1)
1275                     (cdr (assq (string-to-char (aref (car lines) 1))
1276                                epg-key-validity-alist)))
1277                 (if cert
1278                     (condition-case nil
1279                         (epg-dn-from-string (aref (car lines) 9))
1280                       (error (aref (car lines) 9)))
1281                   (aref (car lines) 9)))
1282                (epg-key-user-id-list (car keys)))))
1283        ((equal (aref (car lines) 0) "fpr")
1284         (epg-sub-key-set-fingerprint (car (epg-key-sub-key-list (car keys)))
1285                                      (aref (car lines) 9))))
1286       (setq lines (cdr lines)))
1287     (if (car keys)
1288         (epg-list-keys-postprocess-one-key (car keys)))
1289     (nreverse keys)))
1290
1291 (if (fboundp 'make-temp-file)
1292     (defalias 'epg-make-temp-file 'make-temp-file)
1293   (defvar temporary-file-directory)
1294   ;; stolen from poe.el.
1295   (defun epg-make-temp-file (prefix)
1296     "Create a temporary file.
1297 The returned file name (created by appending some random characters at the end
1298 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1299 is guaranteed to point to a newly created empty file.
1300 You can then use `write-region' to write new data into the file."
1301     (let (tempdir tempfile)
1302       (setq prefix (expand-file-name prefix
1303                                      (if (featurep 'xemacs)
1304                                          (temp-directory)
1305                                        temporary-file-directory)))
1306       (unwind-protect
1307           (let (file)
1308             ;; First, create a temporary directory.
1309             (while (condition-case ()
1310                        (progn
1311                          (setq tempdir (make-temp-name
1312                                         (concat
1313                                          (file-name-directory prefix)
1314                                          "DIR")))
1315                          ;; return nil or signal an error.
1316                          (make-directory tempdir))
1317                      ;; let's try again.
1318                      (file-already-exists t)))
1319             (set-file-modes tempdir 448)
1320             ;; Second, create a temporary file in the tempdir.
1321             ;; There *is* a race condition between `make-temp-name'
1322             ;; and `write-region', but we don't care it since we are
1323             ;; in a private directory now.
1324             (setq tempfile (make-temp-name (concat tempdir "/EMU")))
1325             (write-region "" nil tempfile nil 'silent)
1326             (set-file-modes tempfile 384)
1327             ;; Finally, make a hard-link from the tempfile.
1328             (while (condition-case ()
1329                        (progn
1330                          (setq file (make-temp-name prefix))
1331                          ;; return nil or signal an error.
1332                          (add-name-to-file tempfile file))
1333                      ;; let's try again.
1334                      (file-already-exists t)))
1335             file)
1336         ;; Cleanup the tempfile.
1337         (and tempfile
1338              (file-exists-p tempfile)
1339              (delete-file tempfile))
1340         ;; Cleanup the tempdir.
1341         (and tempdir
1342              (file-directory-p tempdir)
1343              (delete-directory tempdir))))))
1344
1345 ;;;###autoload
1346 (defun epg-cancel (context)
1347   (if (buffer-live-p (process-buffer (epg-context-process context)))
1348       (save-excursion
1349         (set-buffer (process-buffer (epg-context-process context)))
1350         (epg-context-set-result-for
1351          epg-context 'error
1352          (cons '(quit)
1353                (epg-context-result-for epg-context 'error)))))
1354   (if (eq (process-status (epg-context-process context)) 'run)
1355       (delete-process (epg-context-process context))))
1356   
1357 ;;;###autoload
1358 (defun epg-start-decrypt (context cipher)
1359   "Initiate a decrypt operation on CIPHER.
1360 CIPHER is a data object.
1361
1362 If you use this function, you will need to wait for the completion of
1363 `epg-gpg-program' by using `epg-wait-for-completion' and call
1364 `epg-reset' to clear a temporaly output file.
1365 If you are unsure, use synchronous version of this function
1366 `epg-decrypt-file' or `epg-decrypt-string' instead."
1367   (unless (epg-data-file cipher)
1368     (error "Not a file"))
1369   (epg-context-set-result context nil)
1370   (epg-start context (list "--decrypt" (epg-data-file cipher)))
1371   ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
1372   (unless (eq (epg-context-protocol context) 'CMS)
1373     (epg-wait-for-status context '("BEGIN_DECRYPTION"))))
1374
1375 ;;;###autoload
1376 (defun epg-decrypt-file (context cipher plain)
1377   "Decrypt a file CIPHER and store the result to a file PLAIN.
1378 If PLAIN is nil, it returns the result as a string."
1379   (unwind-protect
1380       (progn
1381         (if plain
1382             (epg-context-set-output-file context plain)
1383           (epg-context-set-output-file context
1384                                        (epg-make-temp-file "epg-output")))
1385         (epg-start-decrypt context (epg-make-data-from-file cipher))
1386         (epg-wait-for-completion context)
1387         (if (epg-context-result-for context 'error)
1388             (error "Decrypt failed: %S"
1389                    (epg-context-result-for context 'error)))
1390         (unless plain
1391           (epg-read-output context)))
1392     (unless plain
1393       (epg-delete-output-file context))
1394     (epg-reset context)))
1395
1396 ;;;###autoload
1397 (defun epg-decrypt-string (context cipher)
1398   "Decrypt a string CIPHER and return the plain text."
1399   (let ((input-file (epg-make-temp-file "epg-input"))
1400         (coding-system-for-write 'binary))
1401     (unwind-protect
1402         (progn
1403           (write-region cipher nil input-file nil 'quiet)
1404           (epg-context-set-output-file context
1405                                        (epg-make-temp-file "epg-output"))
1406           (epg-start-decrypt context (epg-make-data-from-file input-file))
1407           (epg-wait-for-completion context)
1408           (if (epg-context-result-for context 'error)
1409               (error "Decrypt failed: %S"
1410                      (epg-context-result-for context 'error)))
1411           (epg-read-output context))
1412       (epg-delete-output-file context)
1413       (if (file-exists-p input-file)
1414           (delete-file input-file))
1415       (epg-reset context))))
1416
1417 ;;;###autoload
1418 (defun epg-start-verify (context signature &optional signed-text)
1419   "Initiate a verify operation on SIGNATURE.
1420 SIGNATURE and SIGNED-TEXT are a data object if they are specified.
1421
1422 For a detached signature, both SIGNATURE and SIGNED-TEXT should be set.
1423 For a normal or a clear text signature, SIGNED-TEXT should be nil.
1424
1425 If you use this function, you will need to wait for the completion of
1426 `epg-gpg-program' by using `epg-wait-for-completion' and call
1427 `epg-reset' to clear a temporaly output file.
1428 If you are unsure, use synchronous version of this function
1429 `epg-verify-file' or `epg-verify-string' instead."
1430   (epg-context-set-result context nil)
1431   (if signed-text
1432       ;; Detached signature.
1433       (if (epg-data-file signed-text)
1434           (epg-start context (list "--verify" (epg-data-file signature)
1435                                    (epg-data-file signed-text)))
1436         (epg-start context (list "--verify" (epg-data-file signature) "-"))
1437         (if (eq (process-status (epg-context-process context)) 'run)
1438             (process-send-string (epg-context-process context)
1439                                  (epg-data-string signed-text)))
1440         (if (eq (process-status (epg-context-process context)) 'run)
1441             (process-send-eof (epg-context-process context))))
1442     ;; Normal (or cleartext) signature.
1443     (if (epg-data-file signature)
1444         (epg-start context (list "--verify" (epg-data-file signature)))
1445       (epg-start context (list "--verify"))
1446       (if (eq (process-status (epg-context-process context)) 'run)
1447           (process-send-string (epg-context-process context)
1448                                (epg-data-string signature)))
1449       (if (eq (process-status (epg-context-process context)) 'run)
1450           (process-send-eof (epg-context-process context))))))
1451
1452 ;;;###autoload
1453 (defun epg-verify-file (context signature &optional signed-text plain)
1454   "Verify a file SIGNATURE.
1455 SIGNED-TEXT and PLAIN are also a file if they are specified.
1456
1457 For a detached signature, both SIGNATURE and SIGNED-TEXT should be string.
1458 For a normal or a clear text signature, SIGNED-TEXT should be nil."
1459   (unwind-protect
1460       (progn
1461         (if plain
1462             (epg-context-set-output-file context plain)
1463           (epg-context-set-output-file context
1464                                        (epg-make-temp-file "epg-output")))
1465         (if signed-text
1466             (epg-start-verify context
1467                               (epg-make-data-from-file signature)
1468                               (epg-make-data-from-file signed-text))
1469           (epg-start-verify context
1470                             (epg-make-data-from-file signature)))
1471         (epg-wait-for-completion context)
1472 ;       (if (epg-context-result-for context 'error)
1473 ;           (error "Verify failed: %S"
1474 ;                  (epg-context-result-for context 'error)))
1475         (unless plain
1476           (epg-read-output context)))
1477     (unless plain
1478       (epg-delete-output-file context))
1479     (epg-reset context)))
1480
1481 ;;;###autoload
1482 (defun epg-verify-string (context signature &optional signed-text)
1483   "Verify a string SIGNATURE.
1484 SIGNED-TEXT is a string if it is specified.
1485
1486 For a detached signature, both SIGNATURE and SIGNED-TEXT should be string.
1487 For a normal or a clear text signature, SIGNED-TEXT should be nil."
1488   (let ((coding-system-for-write 'binary)
1489         input-file)
1490     (unwind-protect
1491         (progn
1492           (epg-context-set-output-file context
1493                                        (epg-make-temp-file "epg-output"))
1494           (if signed-text
1495               (progn
1496                 (setq input-file (epg-make-temp-file "epg-signature"))
1497                 (write-region signature nil input-file nil 'quiet)
1498                 (epg-start-verify context
1499                                   (epg-make-data-from-file input-file)
1500                                   (epg-make-data-from-string signed-text)))
1501             (epg-start-verify context (epg-make-data-from-string signature)))
1502           (epg-wait-for-completion context)
1503 ;         (if (epg-context-result-for context 'error)
1504 ;             (error "Verify failed: %S"
1505 ;                    (epg-context-result-for context 'error)))
1506           (epg-read-output context))
1507       (epg-delete-output-file context)
1508       (if (and input-file
1509                (file-exists-p input-file))
1510           (delete-file input-file))
1511       (epg-reset context))))
1512
1513 ;;;###autoload
1514 (defun epg-start-sign (context plain &optional mode)
1515   "Initiate a sign operation on PLAIN.
1516 PLAIN is a data object.
1517
1518 If optional 3rd argument MODE is t or 'detached, it makes a detached signature.
1519 If it is nil or 'normal, it makes a normal signature.
1520 Otherwise, it makes a clear text signature.
1521
1522 If you use this function, you will need to wait for the completion of
1523 `epg-gpg-program' by using `epg-wait-for-completion' and call
1524 `epg-reset' to clear a temporaly output file.
1525 If you are unsure, use synchronous version of this function
1526 `epg-sign-file' or `epg-sign-string' instead."
1527   (epg-context-set-result context nil)
1528   (epg-start context
1529              (append (list (if (or (eq mode t) (eq mode 'detached))
1530                                "--detach-sign"
1531                              (if (or (null mode) (eq mode 'normal))
1532                                  "--sign"
1533                                "--clearsign")))
1534                      (apply #'nconc
1535                             (mapcar
1536                              (lambda (signer)
1537                                (list "-u"
1538                                      (epg-sub-key-id
1539                                       (car (epg-key-sub-key-list signer)))))
1540                              (epg-context-signers context)))
1541                      (if (epg-data-file plain)
1542                          (list (epg-data-file plain)))))
1543   ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
1544   (unless (eq (epg-context-protocol context) 'CMS)
1545     (epg-wait-for-status context '("BEGIN_SIGNING")))
1546   (when (epg-data-string plain)
1547     (if (eq (process-status (epg-context-process context)) 'run)
1548         (process-send-string (epg-context-process context)
1549                              (epg-data-string plain)))
1550     (if (eq (process-status (epg-context-process context)) 'run)
1551         (process-send-eof (epg-context-process context)))))
1552
1553 ;;;###autoload
1554 (defun epg-sign-file (context plain signature &optional mode)
1555   "Sign a file PLAIN and store the result to a file SIGNATURE.
1556 If SIGNATURE is nil, it returns the result as a string.
1557 If optional 3rd argument MODE is t or 'detached, it makes a detached signature.
1558 If it is nil or 'normal, it makes a normal signature.
1559 Otherwise, it makes a clear text signature."
1560   (unwind-protect
1561       (progn
1562         (if signature
1563             (epg-context-set-output-file context signature)
1564           (epg-context-set-output-file context
1565                                        (epg-make-temp-file "epg-output")))
1566         (epg-start-sign context (epg-make-data-from-file plain) mode)
1567         (epg-wait-for-completion context)
1568         (unless (epg-context-result-for context 'sign)
1569           (if (epg-context-result-for context 'error)
1570               (error "Sign failed: %S"
1571                      (epg-context-result-for context 'error))
1572             (error "Sign failed")))
1573         (unless signature
1574           (epg-read-output context)))
1575     (unless signature
1576       (epg-delete-output-file context))
1577     (epg-reset context)))
1578
1579 ;;;###autoload
1580 (defun epg-sign-string (context plain &optional mode)
1581   "Sign a string PLAIN and return the output as string.
1582 If optional 3rd argument MODE is t or 'detached, it makes a detached signature.
1583 If it is nil or 'normal, it makes a normal signature.
1584 Otherwise, it makes a clear text signature."
1585   (unwind-protect
1586       (progn
1587         (epg-context-set-output-file context
1588                                      (epg-make-temp-file "epg-output"))
1589         (epg-start-sign context (epg-make-data-from-string plain) mode)
1590         (epg-wait-for-completion context)
1591         (unless (epg-context-result-for context 'sign)
1592           (if (epg-context-result-for context 'error)
1593               (error "Sign failed: %S"
1594                      (epg-context-result-for context 'error))
1595             (error "Sign failed")))
1596         (epg-read-output context))
1597     (epg-delete-output-file context)
1598     (epg-reset context)))
1599
1600 ;;;###autoload
1601 (defun epg-start-encrypt (context plain recipients
1602                                   &optional sign always-trust)
1603   "Initiate an encrypt operation on PLAIN.
1604 PLAIN is a data object.
1605 If RECIPIENTS is nil, it performs symmetric encryption.
1606
1607 If you use this function, you will need to wait for the completion of
1608 `epg-gpg-program' by using `epg-wait-for-completion' and call
1609 `epg-reset' to clear a temporaly output file.
1610 If you are unsure, use synchronous version of this function
1611 `epg-encrypt-file' or `epg-encrypt-string' instead."
1612   (epg-context-set-result context nil)
1613   (epg-start context
1614              (append (if always-trust '("--always-trust"))
1615                      (if recipients '("--encrypt") '("--symmetric"))
1616                      (if sign
1617                          (cons "--sign"
1618                                (apply #'nconc
1619                                       (mapcar (lambda (signer)
1620                                                 (list "-u" signer))
1621                                               (epg-context-signers context)))))
1622                      (apply #'nconc
1623                             (mapcar
1624                              (lambda (recipient)
1625                                (list "-r"
1626                                      (epg-sub-key-id
1627                                       (car (epg-key-sub-key-list recipient)))))
1628                              recipients))
1629                      (if (epg-data-file plain)
1630                          (list (epg-data-file plain)))))
1631   ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
1632   (unless (eq (epg-context-protocol context) 'CMS)
1633     (if sign
1634         (epg-wait-for-status context '("BEGIN_SIGNING"))
1635       (epg-wait-for-status context '("BEGIN_ENCRYPTION"))))
1636   (when (epg-data-string plain)
1637     (if (eq (process-status (epg-context-process context)) 'run)
1638         (process-send-string (epg-context-process context)
1639                              (epg-data-string plain)))
1640     (if (eq (process-status (epg-context-process context)) 'run)
1641         (process-send-eof (epg-context-process context)))))
1642
1643 ;;;###autoload
1644 (defun epg-encrypt-file (context plain recipients
1645                                  cipher &optional sign always-trust)
1646   "Encrypt a file PLAIN and store the result to a file CIPHER.
1647 If CIPHER is nil, it returns the result as a string.
1648 If RECIPIENTS is nil, it performs symmetric encryption."
1649   (unwind-protect
1650       (progn
1651         (if cipher
1652             (epg-context-set-output-file context cipher)
1653           (epg-context-set-output-file context
1654                                        (epg-make-temp-file "epg-output")))
1655         (epg-start-encrypt context (epg-make-data-from-file plain)
1656                            recipients sign always-trust)
1657         (epg-wait-for-completion context)
1658         (if (and sign
1659                  (not (epg-context-result-for context 'sign)))
1660             (if (epg-context-result-for context 'error)
1661                 (error "Sign failed: %S"
1662                        (epg-context-result-for context 'error))
1663                 (error "Sign failed")))
1664         (if (epg-context-result-for context 'error)
1665             (error "Encrypt failed: %S"
1666                    (epg-context-result-for context 'error)))
1667         (unless cipher
1668           (epg-read-output context)))
1669     (unless cipher
1670       (epg-delete-output-file context))
1671     (epg-reset context)))
1672
1673 ;;;###autoload
1674 (defun epg-encrypt-string (context plain recipients
1675                                    &optional sign always-trust)
1676   "Encrypt a string PLAIN.
1677 If RECIPIENTS is nil, it performs symmetric encryption."
1678   (unwind-protect
1679       (progn
1680         (epg-context-set-output-file context
1681                                      (epg-make-temp-file "epg-output"))
1682         (epg-start-encrypt context (epg-make-data-from-string plain)
1683                            recipients sign always-trust)
1684         (epg-wait-for-completion context)
1685         (if (and sign
1686                  (not (epg-context-result-for context 'sign)))
1687             (if (epg-context-result-for context 'error)
1688                 (error "Sign failed: %S"
1689                        (epg-context-result-for context 'error))
1690               (error "Sign failed")))
1691         (if (epg-context-result-for context 'error)
1692             (error "Encrypt failed: %S"
1693                    (epg-context-result-for context 'error)))
1694         (epg-read-output context))
1695     (epg-delete-output-file context)
1696     (epg-reset context)))
1697
1698 ;;;###autoload
1699 (defun epg-start-export-keys (context keys)
1700   "Initiate an export keys operation.
1701
1702 If you use this function, you will need to wait for the completion of
1703 `epg-gpg-program' by using `epg-wait-for-completion' and call
1704 `epg-reset' to clear a temporaly output file.
1705 If you are unsure, use synchronous version of this function
1706 `epg-export-keys-to-file' or `epg-export-keys-to-string' instead."
1707   (epg-context-set-result context nil)
1708   (epg-start context (cons "--export"
1709                            (mapcar
1710                             (lambda (key)
1711                               (epg-sub-key-id
1712                                (car (epg-key-sub-key-list key))))
1713                             keys))))
1714
1715 ;;;###autoload
1716 (defun epg-export-keys-to-file (context keys file)
1717   "Extract public KEYS."
1718   (unwind-protect
1719       (progn
1720         (if keys
1721             (epg-context-set-output-file context file)
1722           (epg-context-set-output-file context
1723                                        (epg-make-temp-file "epg-output")))
1724         (epg-start-export-keys context keys)
1725         (epg-wait-for-completion context)
1726         (if (epg-context-result-for context 'error)
1727             (error "Export keys failed: %S"
1728                    (epg-context-result-for context 'error)))
1729         (unless file
1730           (epg-read-output context)))
1731     (unless file
1732       (epg-delete-output-file context))
1733     (epg-reset context)))
1734
1735 ;;;###autoload
1736 (defun epg-export-keys-to-string (context keys)
1737   "Extract public KEYS and return them as a string."
1738   (epg-export-keys-to-file context keys nil))
1739
1740 ;;;###autoload
1741 (defun epg-start-import-keys (context keys)
1742   "Initiate an import keys operation.
1743 KEYS is a data object.
1744
1745 If you use this function, you will need to wait for the completion of
1746 `epg-gpg-program' by using `epg-wait-for-completion' and call
1747 `epg-reset' to clear a temporaly output file.
1748 If you are unsure, use synchronous version of this function
1749 `epg-import-keys-from-file' or `epg-import-keys-from-string' instead."
1750   (epg-context-set-result context nil)
1751   (epg-context-set-output-file context (epg-make-temp-file "epg-output"))
1752   (epg-start context (list "--import" (epg-data-file keys)))
1753   (when (epg-data-string keys)
1754     (if (eq (process-status (epg-context-process context)) 'run)
1755         (process-send-string (epg-context-process context)
1756                              (epg-data-string keys)))
1757     (if (eq (process-status (epg-context-process context)) 'run)
1758         (process-send-eof (epg-context-process context)))))
1759
1760 (defun epg-import-keys-1 (context keys)
1761   (unwind-protect
1762       (progn
1763         (epg-start-import-keys context keys)
1764         (epg-wait-for-completion context)
1765         (if (epg-context-result-for context 'error)
1766             (error "Import keys failed: %S"
1767                    (epg-context-result-for context 'error)))
1768         (epg-read-output context))
1769     (epg-reset context)))
1770
1771 ;;;###autoload
1772 (defun epg-import-keys-from-file (context keys)
1773   "Add keys from a file KEYS."
1774   (epg-import-keys-1 context (epg-make-data-from-file keys)))
1775
1776 ;;;###autoload
1777 (defun epg-import-keys-from-string (context keys)
1778   "Add keys from a string KEYS."
1779   (epg-import-keys-1 context (epg-make-data-from-string keys)))
1780
1781 ;;;###autoload
1782 (defun epg-start-delete-keys (context keys &optional allow-secret)
1783   "Initiate an delete keys operation.
1784
1785 If you use this function, you will need to wait for the completion of
1786 `epg-gpg-program' by using `epg-wait-for-completion' and call
1787 `epg-reset' to clear a temporaly output file.
1788 If you are unsure, use synchronous version of this function
1789 `epg-delete-keys' instead."
1790   (epg-context-set-result context nil)
1791   (epg-start context (cons (if allow-secret
1792                                "--delete-secret-key"
1793                              "--delete-key")
1794                            (mapcar
1795                             (lambda (key)
1796                               (epg-sub-key-id
1797                                (car (epg-key-sub-key-list key))))
1798                             keys))))
1799
1800 ;;;###autoload
1801 (defun epg-delete-keys (context keys &optional allow-secret)
1802   "Delete KEYS from the key ring."
1803   (unwind-protect
1804       (progn
1805         (epg-start-delete-keys context keys allow-secret)
1806         (epg-wait-for-completion context)
1807         (if (epg-context-result-for context 'error)
1808             (error "Delete keys failed: %S"
1809                    (epg-context-result-for context 'error))))
1810     (epg-reset context)))
1811
1812 ;;;###autoload
1813 (defun epg-start-sign-keys (context keys &optional local)
1814   "Initiate an sign keys operation.
1815
1816 If you use this function, you will need to wait for the completion of
1817 `epg-gpg-program' by using `epg-wait-for-completion' and call
1818 `epg-reset' to clear a temporaly output file.
1819 If you are unsure, use synchronous version of this function
1820 `epg-sign-keys' instead."
1821   (epg-context-set-result context nil)
1822   (epg-start context (cons (if local
1823                                "--lsign-key"
1824                              "--sign-key")
1825                            (mapcar
1826                             (lambda (key)
1827                               (epg-sub-key-id
1828                                (car (epg-key-sub-key-list key))))
1829                             keys))))
1830
1831 ;;;###autoload
1832 (defun epg-sign-keys (context keys &optional local)
1833   "Sign KEYS from the key ring."
1834   (unwind-protect
1835       (progn
1836         (epg-start-sign-keys context keys local)
1837         (epg-wait-for-completion context)
1838         (if (epg-context-result-for context 'error)
1839             (error "Sign keys failed: %S"
1840                    (epg-context-result-for context 'error))))
1841     (epg-reset context)))
1842
1843 ;;;###autoload
1844 (defun epg-start-generate-key (context parameters)
1845   "Initiate a key generation.
1846 PARAMETERS specifies parameters for the key.
1847
1848 If you use this function, you will need to wait for the completion of
1849 `epg-gpg-program' by using `epg-wait-for-completion' and call
1850 `epg-reset' to clear a temporaly output file.
1851 If you are unsure, use synchronous version of this function
1852 `epg-generate-key-from-file' or `epg-generate-key-from-string' instead."
1853   (epg-context-set-result context nil)
1854   (if (epg-data-file parameters)
1855       (epg-start context (list "--batch" "--genkey"
1856                                (epg-data-file parameters)))
1857     (epg-start context '("--batch" "--genkey"))
1858     (if (eq (process-status (epg-context-process context)) 'run)
1859         (process-send-string (epg-context-process context)
1860                              (epg-data-string parameters)))
1861     (if (eq (process-status (epg-context-process context)) 'run)
1862         (process-send-eof (epg-context-process context)))))
1863
1864 ;;;###autoload
1865 (defun epg-generate-key-from-file (context parameters)
1866   "Generate a new key pair.
1867 PARAMETERS is a file which tells how to create the key."
1868   (unwind-protect
1869       (progn
1870         (epg-start-generate-key context (epg-make-data-from-file parameters))
1871         (epg-wait-for-completion context)
1872         (if (epg-context-result-for context 'error)
1873             (error "Generate key failed: %S"
1874                    (epg-context-result-for context 'error))))
1875     (epg-reset context)))
1876
1877 ;;;###autoload
1878 (defun epg-generate-key-from-string (context parameters)
1879   "Generate a new key pair.
1880 PARAMETERS is a string which tells how to create the key."
1881   (unwind-protect
1882       (progn
1883         (epg-start-generate-key context (epg-make-data-from-string parameters))
1884         (epg-wait-for-completion context)
1885         (if (epg-context-result-for context 'error)
1886             (error "Generate key failed: %S"
1887                    (epg-context-result-for context 'error))))
1888     (epg-reset context)))
1889
1890 (defun epg-decode-hexstring (string)
1891   (let ((index 0))
1892     (while (eq index (string-match "[0-9A-Fa-f][0-9A-Fa-f]" string index))
1893       (setq string (replace-match "\\x\\&" t nil string)
1894             index (+ index 4)))
1895     (car (read-from-string (concat "\"" string "\"")))))
1896
1897 (defun epg-decode-quotedstring (string)
1898   (let ((index 0))
1899     (while (string-match "\\\\\\(\\([,=+<>#;\\\"]\\)\\|\
1900 \\([0-9A-Fa-f][0-9A-Fa-f]\\)\\|\\(.\\)\\)"
1901                          string index)
1902       (if (match-beginning 2)
1903           (setq string (replace-match "\\2" t nil string)
1904                 index (1+ index))
1905         (if (match-beginning 3)
1906             (setq string (replace-match "\\x\\3" t nil string)
1907                   index (+ index 4))
1908           (setq string (replace-match "\\\\\\\\\\4" t nil string)
1909                 index (+ index 3)))))
1910     (car (read-from-string (concat "\"" string "\"")))))
1911
1912 (defun epg-dn-from-string (string)
1913   "Parse STRING as LADPv3 Distinguished Names (RFC2253).
1914 The return value is an alist mapping from types to values."
1915   (let ((index 0)
1916         (length (length string))
1917         alist type value group)
1918     (while (< index length)
1919       (if (eq index (string-match "[ \t\n\r]*" string index))
1920           (setq index (match-end 0)))
1921       (if (eq index (string-match
1922                      "\\([0-9]+\\(\\.[0-9]+\\)*\\)\[ \t\n\r]*=[ \t\n\r]*"
1923                      string index))
1924           (setq type (match-string 1 string)
1925                 index (match-end 0))
1926         (if (eq index (string-match "\\([0-9A-Za-z]+\\)[ \t\n\r]*=[ \t\n\r]*"
1927                                     string index))
1928             (setq type (match-string 1 string)
1929                   index (match-end 0))))
1930       (unless type
1931         (error "Invalid type"))
1932       (if (eq index (string-match
1933                      "\\([^,=+<>#;\\\"]\\|\\\\.\\)+"
1934                      string index))
1935           (setq index (match-end 0)
1936                 value (epg-decode-quotedstring (match-string 0 string)))
1937         (if (eq index (string-match "#\\([0-9A-Fa-f]+\\)" string index))
1938             (setq index (match-end 0)
1939                   value (epg-decode-hexstring (match-string 1 string)))
1940           (if (eq index (string-match "\"\\([^\\\"]\\|\\\\.\\)*\""
1941                                       string index))
1942               (setq index (match-end 0)
1943                     value (epg-decode-quotedstring (match-string 0 string))))))
1944       (if group
1945           (if (stringp (car (car alist)))
1946               (setcar alist (list (cons type value) (car alist)))
1947             (setcar alist (cons (cons type value) (car alist))))
1948         (if (consp (car (car alist)))
1949             (setcar alist (nreverse (car alist))))
1950         (setq alist (cons (cons type value) alist)
1951               type nil
1952               value nil))
1953       (if (eq index (string-match "[ \t\n\r]*\\([,;+]\\)" string index))
1954           (setq index (match-end 0)
1955                 group (eq (aref string (match-beginning 1)) ?+))))
1956     (nreverse alist)))
1957
1958 (defun epg-decode-dn (alist)
1959   "Convert ALIST returned by `epg-dn-from-string' to a human readable form.
1960 Type names are resolved using `epg-dn-type-alist'."
1961   (mapconcat
1962    (lambda (rdn)
1963      (if (stringp (car rdn))
1964          (let ((entry (assoc (car rdn) epg-dn-type-alist)))
1965            (if entry
1966                (format "%s=%s" (cdr entry) (cdr rdn))
1967              (format "%s=%s" (car rdn) (cdr rdn))))
1968        (concat "(" (epg-decode-dn rdn) ")")))
1969    alist
1970    ", "))
1971
1972 (provide 'epg)
1973
1974 ;;; epg.el ends here