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