* epg.el (epg-signature-to-string): Decode DN.
[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 name)
542   "Return a user ID object."
543   (cons 'epg-user-id (vector validity name 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-name (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   (cdr (assq name (epg-context-result context))))
571
572 (defun epg-context-set-result-for (context name value)
573   (let* ((result (epg-context-result context))
574          (entry (assq name result)))
575     (if entry
576         (setcdr entry value)
577       (epg-context-set-result context (cons (cons name value) result)))))
578
579 (defun epg-signature-to-string (signature)
580   (let ((user-id (cdr (assoc (epg-signature-key-id signature)
581                              epg-user-id-alist))))
582     (concat
583      (cond ((eq (epg-signature-status signature) 'good)
584             "Good signature ")
585            ((eq (epg-signature-status signature) 'bad)
586             "Bad signature ")
587            ((eq (epg-signature-status signature) 'expired)
588             "Expired signature ")
589            ((eq (epg-signature-status signature) 'expired-key)
590             "Signature made by expired key ")
591            ((eq (epg-signature-status signature) 'revoked-key)
592             "Signature made by revoked key ")
593            ((eq (epg-signature-status signature) 'no-pubkey)
594             "No public key for "))
595      (epg-signature-key-id signature)
596      (if user-id
597          (concat " from "
598                  (if (stringp user-id)
599                      user-id
600                    (epg-decode-dn user-id))
601                  " ")
602        "")
603      (if (epg-signature-validity signature)
604          (format "(trust %s)"  (epg-signature-validity signature))
605        ""))))
606
607 (defun epg-verify-result-to-string (verify-result)
608   (mapconcat #'epg-signature-to-string verify-result "\n"))
609
610 (defun epg-start (context args)
611   "Start `epg-gpg-program' in a subprocess with given ARGS."
612   (let* ((args (append (list "--no-tty"
613                              "--status-fd" "1"
614                              "--yes")
615                        (unless (eq (epg-context-protocol context) 'CMS)
616                          (list "--command-fd" "0"))
617                        (if (epg-context-armor context) '("--armor"))
618                        (if (epg-context-textmode context) '("--textmode"))
619                        (if (epg-context-output-file context)
620                            (list "--output" (epg-context-output-file context)))
621                        args))
622          (coding-system-for-write 'binary)
623          process-connection-type
624          (orig-mode (default-file-modes))
625          (buffer (generate-new-buffer " *epg*"))
626          process)
627     (if epg-debug
628         (save-excursion
629           (unless epg-debug-buffer
630             (setq epg-debug-buffer (generate-new-buffer " *epg-debug*")))
631           (set-buffer epg-debug-buffer)
632           (goto-char (point-max))
633           (insert (format "%s %s\n"
634                           (if (eq (epg-context-protocol context) 'CMS)
635                               epg-gpgsm-program
636                            epg-gpg-program)
637                           (mapconcat #'identity args " ")))))
638     (with-current-buffer buffer
639       (make-local-variable 'epg-read-point)
640       (setq epg-read-point (point-min))
641       (make-local-variable 'epg-pending-status-list)
642       (setq epg-pending-status-list nil)
643       (make-local-variable 'epg-key-id)
644       (setq epg-key-id nil)
645       (make-local-variable 'epg-context)
646       (setq epg-context context))
647     (unwind-protect
648         (progn
649           (set-default-file-modes 448)
650           (setq process
651                 (apply #'start-process "epg" buffer
652                        (if (eq (epg-context-protocol context) 'CMS)
653                            epg-gpgsm-program
654                          epg-gpg-program)
655                        args)))
656       (set-default-file-modes orig-mode))
657     (set-process-filter process #'epg-process-filter)
658     (epg-context-set-process context process)))
659
660 (defun epg-process-filter (process input)
661   (if epg-debug
662       (save-excursion
663         (unless epg-debug-buffer
664           (setq epg-debug-buffer (generate-new-buffer " *epg-debug*")))
665         (set-buffer epg-debug-buffer)
666         (goto-char (point-max))
667         (insert input)))
668   (if (buffer-live-p (process-buffer process))
669       (save-excursion
670         (set-buffer (process-buffer process))
671         (goto-char (point-max))
672         (insert input)
673         (goto-char epg-read-point)
674         (beginning-of-line)
675         (while (looking-at ".*\n")      ;the input line finished
676           (save-excursion
677             (if (looking-at "\\[GNUPG:] \\([A-Z_]+\\) ?\\(.*\\)")
678                 (let* ((status (match-string 1))
679                        (string (match-string 2))
680                        (symbol (intern-soft (concat "epg-status-" status))))
681                   (if (member status epg-pending-status-list)
682                       (setq epg-pending-status-list nil))
683                   (if (and symbol
684                            (fboundp symbol))
685                       (funcall symbol process string)))))
686           (forward-line))
687         (setq epg-read-point (point)))))
688
689 (defun epg-read-output (context)
690   (with-temp-buffer
691     (if (fboundp 'set-buffer-multibyte)
692         (set-buffer-multibyte nil))
693     (if (file-exists-p (epg-context-output-file context))
694         (let ((coding-system-for-read (if (epg-context-textmode context)
695                                           'raw-text
696                                         'binary)))
697           (insert-file-contents (epg-context-output-file context))
698           (buffer-string)))))
699
700 (defun epg-wait-for-status (context status-list)
701   (with-current-buffer (process-buffer (epg-context-process context))
702     (setq epg-pending-status-list status-list)
703     (while (and (eq (process-status (epg-context-process context)) 'run)
704                 epg-pending-status-list)
705       (accept-process-output (epg-context-process context) 1))))
706
707 (defun epg-wait-for-completion (context)
708   (while (eq (process-status (epg-context-process context)) 'run)
709     ;; We can't use accept-process-output instead of sit-for here
710     ;; because it may cause an interrupt during the sentinel execution.
711     (sit-for 0.1)))
712
713 (defun epg-flush (context)
714   (if (eq (process-status (epg-context-process context)) 'run)
715       (process-send-eof (epg-context-process context))))
716
717 (defun epg-reset (context)
718   (if (and (epg-context-process context)
719            (buffer-live-p (process-buffer (epg-context-process context))))
720       (kill-buffer (process-buffer (epg-context-process context))))
721   (epg-context-set-process context nil))
722
723 (defun epg-delete-output-file (context)
724   (if (and (epg-context-output-file context)
725            (file-exists-p (epg-context-output-file context)))
726       (delete-file (epg-context-output-file context))))
727
728 (defun epg-status-USERID_HINT (process string)
729   (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
730       (let* ((key-id (match-string 1 string))
731              (user-id (match-string 2 string))
732              (entry (assoc key-id epg-user-id-alist)))
733         (if entry
734             (setcdr entry user-id)
735           (setq epg-user-id-alist (cons (cons key-id user-id)
736                                         epg-user-id-alist))))))
737
738 (defun epg-status-NEED_PASSPHRASE (process string)
739   (if (string-match "\\`\\([^ ]+\\)" string)
740       (setq epg-key-id (match-string 1 string))))
741
742 (defun epg-status-NEED_PASSPHRASE_SYM (process string)
743   (setq epg-key-id 'SYM))
744
745 (defun epg-status-NEED_PASSPHRASE_PIN (process string)
746   (setq epg-key-id 'PIN))
747
748 (defun epg-status-GET_HIDDEN (process string)
749   (if (and epg-key-id
750            (string-match "\\`passphrase\\." string))
751       (let (inhibit-quit
752             passphrase
753             passphrase-with-new-line)
754         (unwind-protect
755             (condition-case nil
756                 (progn
757                   (setq passphrase
758                         (funcall
759                          (if (consp (epg-context-passphrase-callback
760                                      epg-context))
761                              (car (epg-context-passphrase-callback
762                                    epg-context))
763                            (epg-context-passphrase-callback epg-context))
764                          epg-context
765                          epg-key-id
766                          (if (consp (epg-context-passphrase-callback
767                                      epg-context))
768                              (cdr (epg-context-passphrase-callback
769                                    epg-context)))))
770                   (when passphrase
771                     (setq passphrase-with-new-line (concat passphrase "\n"))
772                     (fillarray passphrase 0)
773                     (setq passphrase nil)
774                     (process-send-string process passphrase-with-new-line)))
775               (quit
776                (epg-context-set-result-for
777                 epg-context 'error
778                 (cons 'quit
779                       (epg-context-result-for epg-context 'error)))
780                (delete-process process)))
781           (if passphrase
782               (fillarray passphrase 0))
783           (if passphrase-with-new-line
784               (fillarray passphrase-with-new-line 0))))))
785
786 (defun epg-status-GET_BOOL (process string)
787   (let ((entry (assoc string epg-prompt-alist))
788         inhibit-quit)
789     (condition-case nil
790       (if (y-or-n-p (if entry (cdr entry) (concat string "? ")))
791           (process-send-string process "y\n")
792         (process-send-string process "n\n"))
793       (quit
794        (epg-context-set-result-for
795         epg-context 'error
796         (cons 'quit
797               (epg-context-result-for epg-context 'error)))
798        (delete-process process)))))
799
800 (defun epg-status-GET_LINE (process string)
801   (let ((entry (assoc string epg-prompt-alist))
802         inhibit-quit)
803     (condition-case nil
804         (process-send-string
805          process
806          (concat (read-string (if entry (cdr entry) (concat string ": ")))
807                  "\n"))
808       (quit
809        (epg-context-set-result-for
810         epg-context 'error
811         (cons 'quit
812               (epg-context-result-for epg-context 'error)))
813        (delete-process process)))))
814
815 (defun epg-signature-status-internal (status string)
816   (if (string-match "\\`\\([^ ]+\\) \\(.*\\)" string)
817       (let* ((key-id (match-string 1 string))
818              (user-id (match-string 2 string))
819              (entry (assoc key-id epg-user-id-alist)))
820         (epg-context-set-result-for
821          epg-context
822          'verify
823          (cons (epg-make-signature status key-id)
824                (epg-context-result-for epg-context 'verify)))
825         (if (eq (epg-context-protocol epg-context) 'CMS)
826             (condition-case nil
827                 (setq user-id (epg-dn-from-string user-id))
828               (error)))
829         (if entry
830             (setcdr entry user-id)
831           (setq epg-user-id-alist
832                 (cons (cons key-id user-id) epg-user-id-alist))))
833     (epg-context-set-result-for
834      epg-context
835      'verify
836      (cons (epg-make-signature status)
837            (epg-context-result-for epg-context 'verify)))))
838
839 (defun epg-status-GOODSIG (process string)
840   (epg-signature-status-internal 'good string))
841
842 (defun epg-status-EXPSIG (process string)
843   (epg-signature-status-internal 'expired string))
844
845 (defun epg-status-EXPKEYSIG (process string)
846   (epg-signature-status-internal 'expired-key string))
847
848 (defun epg-status-REVKEYSIG (process string)
849   (epg-signature-status-internal 'revoked-key string))
850
851 (defun epg-status-BADSIG (process string)
852   (epg-signature-status-internal 'bad string))
853
854 (defun epg-status-NO_PUBKEY (process string)
855   (epg-context-set-result-for
856      epg-context
857      'verify
858      (cons (epg-make-signature 'no-pubkey string)
859            (epg-context-result-for epg-context 'verify))))
860
861 (defun epg-status-ERRSIG (process string)
862   (let ((signatures (car (epg-context-result-for epg-context 'verify))))
863     (unless signatures
864       (setq signatures (list (epg-make-signature 'error)))
865       (epg-context-set-result-for epg-context 'verify signatures))
866     (when (and (not (eq (epg-signature-status (car signatures)) 'good))
867                (string-match "\\`\\([^ ]+\\) \\([0-9]+\\) \\([0-9]+\\) \
868 \\([0-9A-Fa-f][0-9A-Fa-f]\\) \\([^ ]+\\) \\([0-9]+\\)"
869                              string))
870       (epg-signature-set-key-id
871        (car signatures)
872        (match-string 1 string))
873       (epg-signature-set-pubkey-algorithm
874        (car signatures)
875        (string-to-number (match-string 2 string)))
876       (epg-signature-set-digest-algorithm
877        (car signatures)
878        (string-to-number (match-string 3 string)))
879 ;      (epg-signature-set-class
880 ;       (car signatures)
881 ;       (string-to-number (match-string 4 string) 16))
882       (epg-signature-set-creation-time
883        (car signatures)
884        (match-string 5 string)))))
885
886 (defun epg-status-VALIDSIG (process string)
887   (let ((signature (car (epg-context-result-for epg-context 'verify))))
888     (when (and signature
889                (eq (epg-signature-status signature) 'good)
890                (string-match "\\`\\([^ ]+\\) [^ ]+ \\([^ ]+\\) \\([^ ]+\\) \
891 \\([0-9]+\\) [^ ]+ \\([0-9]+\\) \\([0-9]+\\) \\([0-9A-Fa-f][0-9A-Fa-f]\\) \
892 \\(.*\\)"
893                            string))
894       (epg-signature-set-fingerprint
895        signature
896        (match-string 1 string))
897       (epg-signature-set-creation-time
898        signature
899        (match-string 2 string))
900       (epg-signature-set-expiration-time
901        signature
902        (match-string 3 string))
903 ;      (epg-signature-set-version
904 ;       signature
905 ;       (string-to-number (match-string 4 string)))
906       (epg-signature-set-pubkey-algorithm
907        signature 
908        (string-to-number (match-string 5 string)))
909       (epg-signature-set-digest-algorithm
910        signature
911        (string-to-number (match-string 6 string)))
912 ;      (epg-signature-set-class
913 ;       signature
914 ;       (string-to-number (match-string 7 string) 16))
915       )))
916
917 (defun epg-status-TRUST_UNDEFINED (process string)
918   (let ((signature (car (epg-context-result-for epg-context 'verify))))
919     (if (and signature
920              (eq (epg-signature-status signature) 'good))
921         (epg-signature-set-validity signature 'undefined))))
922
923 (defun epg-status-TRUST_NEVER (process string)
924   (let ((signature (car (epg-context-result-for epg-context 'verify))))
925     (if (and signature
926              (eq (epg-signature-status signature) 'good))
927         (epg-signature-set-validity signature 'never))))
928
929 (defun epg-status-TRUST_MARGINAL (process string)
930   (let ((signature (car (epg-context-result-for epg-context 'verify))))
931     (if (and signature
932              (eq (epg-signature-status signature) 'marginal))
933         (epg-signature-set-validity signature 'marginal))))
934
935 (defun epg-status-TRUST_FULLY (process string)
936   (let ((signature (car (epg-context-result-for epg-context 'verify))))
937     (if (and signature
938              (eq (epg-signature-status signature) 'good))
939         (epg-signature-set-validity signature 'full))))
940
941 (defun epg-status-TRUST_ULTIMATE (process string)
942   (let ((signature (car (epg-context-result-for epg-context 'verify))))
943     (if (and signature
944              (eq (epg-signature-status signature) 'good))
945         (epg-signature-set-validity signature 'ultimate))))
946
947 (defun epg-status-PROGRESS (process string)
948   (if (string-match "\\`\\([^ ]+\\) \\([^ ]\\) \\([0-9]+\\) \\([0-9]+\\)"
949                     string)
950       (funcall (if (consp (epg-context-progress-callback epg-context))
951                    (car (epg-context-progress-callback epg-context))
952                  (epg-context-progress-callback epg-context))
953                epg-context
954                (match-string 1 string)
955                (match-string 2 string)
956                (string-to-number (match-string 3 string))
957                (string-to-number (match-string 4 string))
958                (if (consp (epg-context-progress-callback epg-context))
959                    (cdr (epg-context-progress-callback epg-context))))))
960
961 (defun epg-status-DECRYPTION_FAILED (process string)
962   (epg-context-set-result-for
963    epg-context 'error
964    (cons 'decryption-failed
965          (epg-context-result-for epg-context 'error))))
966
967 (defun epg-status-NODATA (process string)
968   (epg-context-set-result-for
969    epg-context 'error
970    (cons (cons 'no-data (string-to-number string))
971          (epg-context-result-for epg-context 'error))))
972
973 (defun epg-status-UNEXPECTED (process string)
974   (epg-context-set-result-for
975    epg-context 'error
976    (cons (cons 'unexpected (string-to-number string))
977          (epg-context-result-for epg-context 'error))))
978
979 (defun epg-status-KEYEXPIRED (process string)
980   (epg-context-set-result-for
981    epg-context 'error
982    (cons (cons 'key-expired string)
983          (epg-context-result-for epg-context 'error))))
984
985 (defun epg-status-KEYREVOKED (process string)
986   (epg-context-set-result-for
987    epg-context 'error
988    (cons 'key-revoked
989          (epg-context-result-for epg-context 'error))))
990
991 (defun epg-status-BADARMOR (process string)
992   (epg-context-set-result-for
993    epg-context 'error
994    (cons 'bad-armor
995          (epg-context-result-for epg-context 'error))))
996
997 (defun epg-status-INV_RECP (process string)
998   (if (string-match "\\`\\([0-9]+\\) \\(.*\\)" string)
999       (epg-context-set-result-for
1000        epg-context 'error
1001        (cons (list 'invalid-recipient
1002                    (string-to-number (match-string 1 string))
1003                    (match-string 2 string))
1004              (epg-context-result-for epg-context 'error)))))
1005
1006 (defun epg-status-NO_RECP (process string)
1007   (epg-context-set-result-for
1008    epg-context 'error
1009    (cons 'no-recipients
1010          (epg-context-result-for epg-context 'error))))
1011
1012 (defun epg-status-DELETE_PROBLEM (process string)
1013   (if (string-match "\\`\\([0-9]+\\)" string)
1014       (epg-context-set-result-for
1015        epg-context 'error
1016        (cons (cons 'delete-problem (string-to-number (match-string 1 string)))
1017              (epg-context-result-for epg-context 'error)))))
1018
1019 (defun epg-status-SIG_CREATED (process string)
1020   (if (string-match "\\`\\([DCS]\\) \\([0-9]+\\) \\([0-9]+\\) \
1021 \\([0-9A-Fa-F][0-9A-Fa-F]\\) \\(.*\\) " string)
1022       (epg-context-set-result-for
1023        epg-context 'sign
1024        (cons (list (cons 'type (string-to-char (match-string 1 string)))
1025                    (cons 'pubkey-algorithm
1026                          (string-to-number (match-string 2 string)))
1027                    (cons 'digest-algorithm
1028                          (string-to-number (match-string 3 string)))
1029                    (cons 'class (string-to-number (match-string 4 string) 16))
1030                    (cons 'creation-time (match-string 5 string))
1031                    (cons 'fingerprint (substring string (match-end 0))))
1032              (epg-context-result-for epg-context 'sign)))))
1033
1034 (defun epg-passphrase-callback-function (context key-id handback)
1035   (read-passwd
1036    (if (eq key-id 'SYM)
1037        "Passphrase for symmetric encryption: "
1038      (if (eq key-id 'PIN)
1039          "Passphrase for PIN: "
1040        (let ((entry (assoc key-id epg-user-id-alist)))
1041          (if entry
1042              (format "Passphrase for %s %s: " key-id (cdr entry))
1043            (format "Passphrase for %s: " key-id)))))))
1044
1045 (defun epg-progress-callback-function (context what char current total
1046                                                handback)
1047   (message "%s: %d%%/%d%%" what current total))
1048
1049 (defun epg-configuration ()
1050   "Return a list of internal configuration parameters of `epg-gpg-program'."
1051   (let (config type)
1052     (with-temp-buffer
1053       (apply #'call-process epg-gpg-program nil (list t nil) nil
1054              '("--with-colons" "--list-config"))
1055       (goto-char (point-min))
1056       (while (re-search-forward "^cfg:\\([^:]+\\):\\(.*\\)" nil t)
1057         (setq type (intern (match-string 1))
1058               config (cons (cons type
1059                                  (if (memq type
1060                                            '(pubkey cipher digest compress))
1061                                      (mapcar #'string-to-number
1062                                              (delete "" (split-string
1063                                                          (match-string 2)
1064                                                          ";")))
1065                                    (match-string 2)))
1066                            config))))
1067     config))
1068
1069 (defun epg-list-keys-1 (context name mode)
1070   (let ((args (append (list "--with-colons" "--no-greeting" "--batch"
1071                             "--with-fingerprint"
1072                             "--with-fingerprint"
1073                             (if (or (eq mode t) (eq mode 'secret))
1074                                 "--list-secret-keys"
1075                               (if mode
1076                                   "--list-sigs"
1077                                 "--list-keys")))
1078                       (unless (eq (epg-context-protocol context) 'CMS)
1079                         '("--fixed-list-mode"))
1080                       (if name (list name))))
1081         keys string field index)
1082     (with-temp-buffer
1083       (apply #'call-process
1084              (if (eq (epg-context-protocol context) 'CMS)
1085                  epg-gpgsm-program
1086                epg-gpg-program)
1087              nil (list t nil) nil args)
1088       (goto-char (point-min))
1089       (while (re-search-forward "^[a-z][a-z][a-z]:.*" nil t)
1090         (setq keys (cons (make-vector 15 nil) keys)
1091               string (match-string 0)
1092               index 0
1093               field 0)
1094         (while (eq index
1095                    (string-match "\\([^:]+\\)?:" string index))
1096           (setq index (match-end 0))
1097           (aset (car keys) field (match-string 1 string))
1098           (setq field (1+ field))))
1099       (nreverse keys))))
1100
1101 (defun epg-make-sub-key-1 (line)
1102   (epg-make-sub-key
1103    (if (aref line 1)
1104        (cdr (assq (string-to-char (aref line 1)) epg-key-validity-alist)))
1105    (delq nil
1106          (mapcar (lambda (char) (cdr (assq char epg-key-capablity-alist)))
1107                  (aref line 11)))
1108    (member (aref line 0) '("sec" "ssb"))
1109    (string-to-number (aref line 3))
1110    (string-to-number (aref line 2))
1111    (aref line 4)
1112    (aref line 5)
1113    (aref line 6)))
1114
1115 (defun epg-list-keys (context &optional name mode)
1116   "Return a list of epg-key objects matched with NAME.
1117 If MODE is nil, only public keyring should be searched.
1118 If MODE is t or 'secret, only secret keyring should be searched. 
1119 Otherwise, only public keyring should be searched and the key
1120 signatures should be included."
1121   (let ((lines (epg-list-keys-1 context name mode))
1122         keys cert)
1123     (while lines
1124       (cond
1125        ((member (aref (car lines) 0) '("pub" "sec" "crt" "crs"))
1126         (when (car keys)
1127           (epg-key-set-sub-key-list
1128            (car keys)
1129            (nreverse (epg-key-sub-key-list (car keys))))
1130           (epg-key-set-user-id-list
1131            (car keys)
1132            (nreverse (epg-key-user-id-list (car keys)))))
1133         (setq cert (member (aref (car lines) 0) '("crt" "crs"))
1134               keys (cons (epg-make-key
1135                           (if (aref (car lines) 8)
1136                               (cdr (assq (string-to-char (aref (car lines) 8))
1137                                          epg-key-validity-alist))))
1138                          keys))
1139         (epg-key-set-sub-key-list
1140          (car keys)
1141          (cons (epg-make-sub-key-1 (car lines))
1142                (epg-key-sub-key-list (car keys)))))
1143        ((member (aref (car lines) 0) '("sub" "ssb"))
1144         (epg-key-set-sub-key-list
1145          (car keys)
1146          (cons (epg-make-sub-key-1 (car lines))
1147                (epg-key-sub-key-list (car keys)))))
1148        ((equal (aref (car lines) 0) "uid")
1149         (epg-key-set-user-id-list
1150          (car keys)
1151          (cons (epg-make-user-id
1152                 (if (aref (car lines) 1)
1153                     (cdr (assq (string-to-char (aref (car lines) 1))
1154                                epg-key-validity-alist)))
1155                 (if cert
1156                     (condition-case nil
1157                         (epg-dn-from-string (aref (car lines) 9))
1158                       (error (aref (car lines) 9)))
1159                   (aref (car lines) 9)))
1160                (epg-key-user-id-list (car keys)))))
1161        ((equal (aref (car lines) 0) "fpr")
1162         (epg-sub-key-set-fingerprint (car (epg-key-sub-key-list (car keys)))
1163                                      (aref (car lines) 9))))
1164       (setq lines (cdr lines)))
1165     (when (car keys)
1166       (epg-key-set-sub-key-list
1167        (car keys)
1168        (nreverse (epg-key-sub-key-list (car keys))))
1169       (epg-key-set-user-id-list
1170        (car keys)
1171        (nreverse (epg-key-user-id-list (car keys)))))
1172     (nreverse keys)))
1173
1174 (if (fboundp 'make-temp-file)
1175     (defalias 'epg-make-temp-file 'make-temp-file)
1176   ;; stolen from poe.el.
1177   (defun epg-make-temp-file (prefix)
1178     "Create a temporary file.
1179 The returned file name (created by appending some random characters at the end
1180 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1181 is guaranteed to point to a newly created empty file.
1182 You can then use `write-region' to write new data into the file."
1183     (let (tempdir tempfile)
1184       (unwind-protect
1185           (let (file)
1186             ;; First, create a temporary directory.
1187             (while (condition-case ()
1188                        (progn
1189                          (setq tempdir (make-temp-name
1190                                         (concat
1191                                          (file-name-directory prefix)
1192                                          "DIR")))
1193                          ;; return nil or signal an error.
1194                          (make-directory tempdir))
1195                      ;; let's try again.
1196                      (file-already-exists t)))
1197             (set-file-modes tempdir 448)
1198             ;; Second, create a temporary file in the tempdir.
1199             ;; There *is* a race condition between `make-temp-name'
1200             ;; and `write-region', but we don't care it since we are
1201             ;; in a private directory now.
1202             (setq tempfile (make-temp-name (concat tempdir "/EMU")))
1203             (write-region "" nil tempfile nil 'silent)
1204             (set-file-modes tempfile 384)
1205             ;; Finally, make a hard-link from the tempfile.
1206             (while (condition-case ()
1207                        (progn
1208                          (setq file (make-temp-name prefix))
1209                          ;; return nil or signal an error.
1210                          (add-name-to-file tempfile file))
1211                      ;; let's try again.
1212                      (file-already-exists t)))
1213             file)
1214         ;; Cleanup the tempfile.
1215         (and tempfile
1216              (file-exists-p tempfile)
1217              (delete-file tempfile))
1218         ;; Cleanup the tempdir.
1219         (and tempdir
1220              (file-directory-p tempdir)
1221              (delete-directory tempdir))))))
1222
1223 ;;;###autoload
1224 (defun epg-cancel (context)
1225   (if (eq (process-status (epg-context-process context)) 'run)
1226       (delete-process (epg-context-process context))))
1227   
1228 ;;;###autoload
1229 (defun epg-start-decrypt (context cipher)
1230   "Initiate a decrypt operation on CIPHER.
1231 CIPHER is a data object.
1232
1233 If you use this function, you will need to wait for the completion of
1234 `epg-gpg-program' by using `epg-wait-for-completion' and call
1235 `epg-reset' to clear a temporaly output file.
1236 If you are unsure, use synchronous version of this function
1237 `epg-decrypt-file' or `epg-decrypt-string' instead."
1238   (unless (epg-data-file cipher)
1239     (error "Not a file"))
1240   (epg-context-set-result context nil)
1241   (epg-start context (list "--decrypt" (epg-data-file cipher)))
1242   ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
1243   (unless (eq (epg-context-protocol context) 'CMS)
1244     (epg-wait-for-status context '("BEGIN_DECRYPTION"))))
1245
1246 ;;;###autoload
1247 (defun epg-decrypt-file (context cipher plain)
1248   "Decrypt a file CIPHER and store the result to a file PLAIN.
1249 If PLAIN is nil, it returns the result as a string."
1250   (unwind-protect
1251       (progn
1252         (if plain
1253             (epg-context-set-output-file context plain)
1254           (epg-context-set-output-file context
1255                                        (epg-make-temp-file "epg-output")))
1256         (epg-start-decrypt context (epg-make-data-from-file cipher))
1257         (epg-wait-for-completion context)
1258         (if (epg-context-result-for context 'error)
1259             (error "Decrypt failed: %S"
1260                    (epg-context-result-for context 'error)))
1261         (unless plain
1262           (epg-read-output context)))
1263     (unless plain
1264       (epg-delete-output-file context))
1265     (epg-reset context)))
1266
1267 ;;;###autoload
1268 (defun epg-decrypt-string (context cipher)
1269   "Decrypt a string CIPHER and return the plain text."
1270   (let ((input-file (epg-make-temp-file "epg-input"))
1271         (coding-system-for-write 'binary))
1272     (unwind-protect
1273         (progn
1274           (write-region cipher nil input-file nil 'quiet)
1275           (epg-context-set-output-file context
1276                                        (epg-make-temp-file "epg-output"))
1277           (epg-start-decrypt context (epg-make-data-from-file input-file))
1278           (epg-flush context)
1279           (epg-wait-for-completion context)
1280           (if (epg-context-result-for context 'error)
1281               (error "Decrypt failed: %S"
1282                      (epg-context-result-for context 'error)))
1283           (epg-read-output context))
1284       (epg-delete-output-file context)
1285       (if (file-exists-p input-file)
1286           (delete-file input-file))
1287       (epg-reset context))))
1288
1289 ;;;###autoload
1290 (defun epg-start-verify (context signature &optional signed-text)
1291   "Initiate a verify operation on SIGNATURE.
1292 SIGNATURE and SIGNED-TEXT are a data object if they are specified.
1293
1294 For a detached signature, both SIGNATURE and SIGNED-TEXT should be set.
1295 For a normal or a clear text signature, SIGNED-TEXT should be nil.
1296
1297 If you use this function, you will need to wait for the completion of
1298 `epg-gpg-program' by using `epg-wait-for-completion' and call
1299 `epg-reset' to clear a temporaly output file.
1300 If you are unsure, use synchronous version of this function
1301 `epg-verify-file' or `epg-verify-string' instead."
1302   (epg-context-set-result context nil)
1303   (if signed-text
1304       ;; Detached signature.
1305       (if (epg-data-file signed-text)
1306           (epg-start context (list "--verify" (epg-data-file signature)
1307                                    (epg-data-file signed-text)))
1308         (epg-start context (list "--verify" (epg-data-file signature) "-"))
1309         (if (eq (process-status (epg-context-process context)) 'run)
1310             (process-send-string (epg-context-process context)
1311                                  (epg-data-string signed-text))))
1312     ;; Normal (or cleartext) signature.
1313     (if (epg-data-file signature)
1314         (epg-start context (list "--verify" (epg-data-file signature)))
1315       (epg-start context (list "--verify"))
1316       (if (eq (process-status (epg-context-process context)) 'run)
1317           (process-send-string (epg-context-process context)
1318                                (epg-data-string signature))))))
1319
1320 ;;;###autoload
1321 (defun epg-verify-file (context signature &optional signed-text plain)
1322   "Verify a file SIGNATURE.
1323 SIGNED-TEXT and PLAIN are also a file if they are specified.
1324
1325 For a detached signature, both SIGNATURE and SIGNED-TEXT should be string.
1326 For a normal or a clear text signature, SIGNED-TEXT should be nil."
1327   (unwind-protect
1328       (progn
1329         (if plain
1330             (epg-context-set-output-file context plain)
1331           (epg-context-set-output-file context
1332                                        (epg-make-temp-file "epg-output")))
1333         (if signed-text
1334             (epg-start-verify context
1335                               (epg-make-data-from-file signature)
1336                               (epg-make-data-from-file signed-text))
1337           (epg-start-verify context
1338                             (epg-make-data-from-file signature)))
1339         (epg-wait-for-completion context)
1340 ;       (if (epg-context-result-for context 'error)
1341 ;           (error "Verify failed: %S"
1342 ;                  (epg-context-result-for context 'error)))
1343         (unless plain
1344           (epg-read-output context)))
1345     (unless plain
1346       (epg-delete-output-file context))
1347     (epg-reset context)))
1348
1349 ;;;###autoload
1350 (defun epg-verify-string (context signature &optional signed-text)
1351   "Verify a string SIGNATURE.
1352 SIGNED-TEXT is a string if it is specified.
1353
1354 For a detached signature, both SIGNATURE and SIGNED-TEXT should be string.
1355 For a normal or a clear text signature, SIGNED-TEXT should be nil."
1356   (let ((coding-system-for-write 'binary)
1357         input-file)
1358     (unwind-protect
1359         (progn
1360           (epg-context-set-output-file context
1361                                        (epg-make-temp-file "epg-output"))
1362           (if signed-text
1363               (progn
1364                 (setq input-file (epg-make-temp-file "epg-signature"))
1365                 (write-region signature nil input-file nil 'quiet)
1366                 (epg-start-verify context
1367                                   (epg-make-data-from-file input-file)
1368                                   (epg-make-data-from-string signed-text)))
1369             (epg-start-verify context (epg-make-data-from-string signature)))
1370           (epg-flush context)
1371           (epg-wait-for-completion context)
1372 ;         (if (epg-context-result-for context 'error)
1373 ;             (error "Verify failed: %S"
1374 ;                    (epg-context-result-for context 'error)))
1375           (epg-read-output context))
1376       (epg-delete-output-file context)
1377       (if (and input-file
1378                (file-exists-p input-file))
1379           (delete-file input-file))
1380       (epg-reset context))))
1381
1382 ;;;###autoload
1383 (defun epg-start-sign (context plain &optional mode)
1384   "Initiate a sign operation on PLAIN.
1385 PLAIN is a data object.
1386
1387 If optional 3rd argument MODE is 'clearsign, it makes a clear text signature.
1388 If MODE is t or 'detached, it makes a detached signature.
1389 Otherwise, it makes a normal signature.
1390
1391 If you use this function, you will need to wait for the completion of
1392 `epg-gpg-program' by using `epg-wait-for-completion' and call
1393 `epg-reset' to clear a temporaly output file.
1394 If you are unsure, use synchronous version of this function
1395 `epg-sign-file' or `epg-sign-string' instead."
1396   (epg-context-set-result context nil)
1397   (epg-start context
1398              (append (list (if (eq mode 'clearsign)
1399                                "--clearsign"
1400                              (if (or (eq mode t) (eq mode 'detached))
1401                                  "--detach-sign"
1402                                "--sign")))
1403                      (apply #'nconc
1404                             (mapcar
1405                              (lambda (signer)
1406                                (list "-u"
1407                                      (epg-sub-key-id
1408                                       (car (epg-key-sub-key-list signer)))))
1409                              (epg-context-signers context)))
1410                      (if (epg-data-file plain)
1411                          (list (epg-data-file plain)))))
1412   ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
1413   (unless (eq (epg-context-protocol context) 'CMS)
1414     (epg-wait-for-status context '("BEGIN_SIGNING")))
1415   (if (and (epg-data-string plain)
1416            (eq (process-status (epg-context-process context)) 'run))
1417       (process-send-string (epg-context-process context)
1418                            (epg-data-string plain))))
1419
1420 ;;;###autoload
1421 (defun epg-sign-file (context plain signature &optional mode)
1422   "Sign a file PLAIN and store the result to a file SIGNATURE.
1423 If SIGNATURE is nil, it returns the result as a string.
1424 If optional 3rd argument MODE is 'clearsign, it makes a clear text signature.
1425 If MODE is t or 'detached, it makes a detached signature.
1426 Otherwise, it makes a normal signature."
1427   (unwind-protect
1428       (progn
1429         (if signature
1430             (epg-context-set-output-file context signature)
1431           (epg-context-set-output-file context
1432                                        (epg-make-temp-file "epg-output")))
1433         (epg-start-sign context (epg-make-data-from-file plain) mode)
1434         (epg-wait-for-completion context)
1435         (if (epg-context-result-for context 'sign)
1436             (if (epg-context-result-for context 'error)
1437                 (message "Sign warning: %S"
1438                          (epg-context-result-for context 'error)))
1439           (if (epg-context-result-for context 'error)
1440               (error "Sign failed: %S"
1441                      (epg-context-result-for context 'error))
1442             (error "Sign failed")))
1443         (unless signature
1444           (epg-read-output context)))
1445     (unless signature
1446       (epg-delete-output-file context))
1447     (epg-reset context)))
1448
1449 ;;;###autoload
1450 (defun epg-sign-string (context plain &optional mode)
1451   "Sign a string PLAIN and return the output as string.
1452 If optional 3rd argument MODE is 'clearsign, it makes a clear text signature.
1453 If MODE is t or 'detached, it makes a detached signature.
1454 Otherwise, it makes a normal signature."
1455   (unwind-protect
1456       (progn
1457         (epg-context-set-output-file context
1458                                      (epg-make-temp-file "epg-output"))
1459         (epg-start-sign context (epg-make-data-from-string plain) mode)
1460         (epg-flush context)
1461         (epg-wait-for-completion context)
1462         (unless (epg-context-result-for context 'sign)
1463           (if (epg-context-result-for context 'error)
1464               (error "Sign failed: %S"
1465                      (epg-context-result-for context 'error))
1466             (error "Sign failed")))
1467         (epg-read-output context))
1468     (epg-delete-output-file context)
1469     (epg-reset context)))
1470
1471 ;;;###autoload
1472 (defun epg-start-encrypt (context plain recipients
1473                                   &optional sign always-trust)
1474   "Initiate an encrypt operation on PLAIN.
1475 PLAIN is a data object.
1476 If RECIPIENTS is nil, it performs symmetric encryption.
1477
1478 If you use this function, you will need to wait for the completion of
1479 `epg-gpg-program' by using `epg-wait-for-completion' and call
1480 `epg-reset' to clear a temporaly output file.
1481 If you are unsure, use synchronous version of this function
1482 `epg-encrypt-file' or `epg-encrypt-string' instead."
1483   (epg-context-set-result context nil)
1484   (epg-start context
1485              (append (if always-trust '("--always-trust"))
1486                      (if recipients '("--encrypt") '("--symmetric"))
1487                      (if sign
1488                          (cons "--sign"
1489                                (apply #'nconc
1490                                       (mapcar (lambda (signer)
1491                                                 (list "-u" signer))
1492                                               (epg-context-signers context)))))
1493                      (apply #'nconc
1494                             (mapcar
1495                              (lambda (recipient)
1496                                (list "-r"
1497                                      (epg-sub-key-id
1498                                       (car (epg-key-sub-key-list recipient)))))
1499                              recipients))
1500                      (if (epg-data-file plain)
1501                          (list (epg-data-file plain)))))
1502   ;; `gpgsm' does not read passphrase from stdin, so waiting is not needed.
1503   (unless (eq (epg-context-protocol context) 'CMS)
1504     (if sign
1505         (epg-wait-for-status context '("BEGIN_SIGNING"))
1506       (epg-wait-for-status context '("BEGIN_ENCRYPTION"))))
1507   (if (and (epg-data-string plain)
1508            (eq (process-status (epg-context-process context)) 'run))
1509       (process-send-string (epg-context-process context)
1510                            (epg-data-string plain))))
1511
1512 ;;;###autoload
1513 (defun epg-encrypt-file (context plain recipients
1514                                  cipher &optional sign always-trust)
1515   "Encrypt a file PLAIN and store the result to a file CIPHER.
1516 If CIPHER is nil, it returns the result as a string.
1517 If RECIPIENTS is nil, it performs symmetric encryption."
1518   (unwind-protect
1519       (progn
1520         (if cipher
1521             (epg-context-set-output-file context cipher)
1522           (epg-context-set-output-file context
1523                                        (epg-make-temp-file "epg-output")))
1524         (epg-start-encrypt context (epg-make-data-from-file plain)
1525                            recipients sign always-trust)
1526         (epg-wait-for-completion context)
1527         (if (and sign
1528                  (not (epg-context-result-for context 'sign)))
1529             (if (epg-context-result-for context 'error)
1530                 (error "Sign failed: %S"
1531                        (epg-context-result-for context 'error))
1532                 (error "Sign failed")))
1533         (if (epg-context-result-for context 'error)
1534             (error "Encrypt failed: %S"
1535                    (epg-context-result-for context 'error)))
1536         (unless cipher
1537           (epg-read-output context)))
1538     (unless cipher
1539       (epg-delete-output-file context))
1540     (epg-reset context)))
1541
1542 ;;;###autoload
1543 (defun epg-encrypt-string (context plain recipients
1544                                    &optional sign always-trust)
1545   "Encrypt a string PLAIN.
1546 If RECIPIENTS is nil, it performs symmetric encryption."
1547   (unwind-protect
1548       (progn
1549         (epg-context-set-output-file context
1550                                      (epg-make-temp-file "epg-output"))
1551         (epg-start-encrypt context (epg-make-data-from-string plain)
1552                            recipients sign always-trust)
1553         (epg-flush context)
1554         (epg-wait-for-completion context)
1555         (if (and sign
1556                  (not (epg-context-result-for context 'sign)))
1557             (if (epg-context-result-for context 'error)
1558                 (error "Sign failed: %S"
1559                        (epg-context-result-for context 'error))
1560               (error "Sign failed")))
1561         (if (epg-context-result-for context 'error)
1562             (error "Encrypt failed: %S"
1563                    (epg-context-result-for context 'error)))
1564         (epg-read-output context))
1565     (epg-delete-output-file context)
1566     (epg-reset context)))
1567
1568 ;;;###autoload
1569 (defun epg-start-export-keys (context keys)
1570   "Initiate an export keys operation.
1571
1572 If you use this function, you will need to wait for the completion of
1573 `epg-gpg-program' by using `epg-wait-for-completion' and call
1574 `epg-reset' to clear a temporaly output file.
1575 If you are unsure, use synchronous version of this function
1576 `epg-export-keys-to-file' or `epg-export-keys-to-string' instead."
1577   (epg-context-set-result context nil)
1578   (epg-start context (cons "--export"
1579                            (mapcar
1580                             (lambda (key)
1581                               (epg-sub-key-id
1582                                (car (epg-key-sub-key-list key))))
1583                             keys))))
1584
1585 ;;;###autoload
1586 (defun epg-export-keys-to-file (context keys file)
1587   "Extract public KEYS."
1588   (unwind-protect
1589       (progn
1590         (if keys
1591             (epg-context-set-output-file context file)
1592           (epg-context-set-output-file context
1593                                        (epg-make-temp-file "epg-output")))
1594         (epg-start-export-keys context keys)
1595         (epg-wait-for-completion context)
1596         (if (epg-context-result-for context 'error)
1597             (error "Export keys failed: %S"
1598                    (epg-context-result-for context 'error)))
1599         (unless file
1600           (epg-read-output context)))
1601     (unless file
1602       (epg-delete-output-file context))
1603     (epg-reset context)))
1604
1605 ;;;###autoload
1606 (defun epg-export-keys-to-string (context keys)
1607   "Extract public KEYS and return them as a string."
1608   (epg-export-keys-to-file context keys nil))
1609
1610 ;;;###autoload
1611 (defun epg-start-import-keys (context keys)
1612   "Initiate an import keys operation.
1613 KEYS is a data object.
1614
1615 If you use this function, you will need to wait for the completion of
1616 `epg-gpg-program' by using `epg-wait-for-completion' and call
1617 `epg-reset' to clear a temporaly output file.
1618 If you are unsure, use synchronous version of this function
1619 `epg-import-keys-from-file' or `epg-import-keys-from-string' instead."
1620   (epg-context-set-result context nil)
1621   (epg-context-set-output-file context (epg-make-temp-file "epg-output"))
1622   (epg-start context (list "--import" (epg-data-file keys)))
1623   (if (and (epg-data-string keys)
1624            (eq (process-status (epg-context-process context)) 'run))
1625       (process-send-string (epg-context-process context)
1626                            (epg-data-string keys))))
1627   
1628 (defun epg-import-keys-1 (context keys)
1629   (unwind-protect
1630       (progn
1631         (epg-start-import-keys context keys)
1632         (if (epg-data-file keys)
1633             (epg-flush context))
1634         (epg-wait-for-completion context)
1635         (if (epg-context-result-for context 'error)
1636             (error "Import keys failed: %S"
1637                    (epg-context-result-for context 'error)))
1638         (epg-read-output context))
1639     (epg-reset context)))
1640
1641 ;;;###autoload
1642 (defun epg-import-keys-from-file (context keys)
1643   "Add keys from a file KEYS."
1644   (epg-import-keys-1 context (epg-make-data-from-file keys)))
1645
1646 ;;;###autoload
1647 (defun epg-import-keys-from-string (context keys)
1648   "Add keys from a string KEYS."
1649   (epg-import-keys-1 context (epg-make-data-from-string keys)))
1650
1651 ;;;###autoload
1652 (defun epg-start-delete-keys (context keys &optional allow-secret)
1653   "Initiate an delete keys operation.
1654
1655 If you use this function, you will need to wait for the completion of
1656 `epg-gpg-program' by using `epg-wait-for-completion' and call
1657 `epg-reset' to clear a temporaly output file.
1658 If you are unsure, use synchronous version of this function
1659 `epg-delete-keys' instead."
1660   (epg-context-set-result context nil)
1661   (epg-start context (cons (if allow-secret
1662                                "--delete-secret-key"
1663                              "--delete-key")
1664                            (mapcar
1665                             (lambda (key)
1666                               (epg-sub-key-id
1667                                (car (epg-key-sub-key-list key))))
1668                             keys))))
1669
1670 ;;;###autoload
1671 (defun epg-delete-keys (context keys &optional allow-secret)
1672   "Delete KEYS from the key ring."
1673   (unwind-protect
1674       (progn
1675         (epg-start-delete-keys context keys allow-secret)
1676         (epg-wait-for-completion context)
1677         (if (epg-context-result-for context 'error)
1678             (error "Delete keys failed: %S"
1679                    (epg-context-result-for context 'error))))
1680     (epg-reset context)))
1681
1682 ;;;###autoload
1683 (defun epg-start-sign-keys (context keys &optional local)
1684   "Initiate an sign keys operation.
1685
1686 If you use this function, you will need to wait for the completion of
1687 `epg-gpg-program' by using `epg-wait-for-completion' and call
1688 `epg-reset' to clear a temporaly output file.
1689 If you are unsure, use synchronous version of this function
1690 `epg-sign-keys' instead."
1691   (epg-context-set-result context nil)
1692   (epg-start context (cons (if local
1693                                "--lsign-key"
1694                              "--sign-key")
1695                            (mapcar
1696                             (lambda (key)
1697                               (epg-sub-key-id
1698                                (car (epg-key-sub-key-list key))))
1699                             keys))))
1700
1701 ;;;###autoload
1702 (defun epg-sign-keys (context keys &optional local)
1703   "Sign KEYS from the key ring."
1704   (unwind-protect
1705       (progn
1706         (epg-start-sign-keys context keys local)
1707         (epg-wait-for-completion context)
1708         (if (epg-context-result-for context 'error)
1709             (error "Sign keys failed: %S"
1710                    (epg-context-result-for context 'error))))
1711     (epg-reset context)))
1712
1713 (defun epg-decode-hexstring (string)
1714   (let ((index 0))
1715     (while (eq index (string-match "[0-9A-Fa-f][0-9A-Fa-f]" string index))
1716       (setq string (replace-match "\\x\\&" t nil string)
1717             index (+ index 4)))
1718     (car (read-from-string (concat "\"" string "\"")))))
1719
1720 (defun epg-decode-quotedstring (string)
1721   (let ((index 0))
1722     (while (string-match "\\\\\\(\\([,=+<>#;\\\"]\\)\\|\
1723 \\([0-9A-Fa-f][0-9A-Fa-f]\\)\\|\\(.\\)\\)"
1724                          string index)
1725       (if (match-beginning 2)
1726           (setq string (replace-match "\\2" t nil string)
1727                 index (1+ index))
1728         (if (match-beginning 3)
1729             (setq string (replace-match "\\x\\3" t nil string)
1730                   index (+ index 4))
1731           (setq string (replace-match "\\\\\\\\\\4" t nil string)
1732                 index (+ index 3)))))
1733     (car (read-from-string (concat "\"" string "\"")))))
1734
1735 (defun epg-dn-from-string (string)
1736   "Parse STRING as LADPv3 Distinguished Names (RFC2253).
1737 The return value is an alist mapping from types to values."
1738   (let ((index 0)
1739         (length (length string))
1740         alist type value group)
1741     (while (< index length)
1742       (if (eq index (string-match "[ \t\n\r]*" string index))
1743           (setq index (match-end 0)))
1744       (if (eq index (string-match
1745                      "\\([0-9]+\\(\\.[0-9]+\\)*\\)\[ \t\n\r]*=[ \t\n\r]*"
1746                      string index))
1747           (setq type (match-string 1 string)
1748                 index (match-end 0))
1749         (if (eq index (string-match "\\([0-9A-Za-z]+\\)[ \t\n\r]*=[ \t\n\r]*"
1750                                     string index))
1751             (setq type (match-string 1 string)
1752                   index (match-end 0))))
1753       (unless type
1754         (error "Invalid type"))
1755       (if (eq index (string-match
1756                      "\\([^,=+<>#;\\\"]\\|\\\\.\\)+"
1757                      string index))
1758           (setq index (match-end 0)
1759                 value (epg-decode-quotedstring (match-string 0 string)))
1760         (if (eq index (string-match "#\\([0-9A-Fa-f]+\\)" string index))
1761             (setq index (match-end 0)
1762                   value (epg-decode-hexstring (match-string 1 string)))
1763           (if (eq index (string-match "\"\\([^\\\"]\\|\\\\.\\)*\""
1764                                       string index))
1765               (setq index (match-end 0)
1766                     value (epg-decode-quotedstring (match-string 0 string))))))
1767       (if group
1768           (if (stringp (car (car alist)))
1769               (setcar alist (list (cons type value) (car alist)))
1770             (setcar alist (cons (cons type value) (car alist))))
1771         (if (consp (car (car alist)))
1772             (setcar alist (nreverse (car alist))))
1773         (setq alist (cons (cons type value) alist)
1774               type nil
1775               value nil))
1776       (if (eq index (string-match "[ \t\n\r]*\\([,;+]\\)" string index))
1777           (setq index (match-end 0)
1778                 group (eq (aref string (match-beginning 1)) ?+))))
1779     (nreverse alist)))
1780
1781 (defun epg-decode-dn (alist)
1782   "Convert ALIST returned by `epg-dn-from-string' to a human readable form.
1783 Type names are resolved using `epg-dn-type-alist'."
1784   (mapconcat
1785    (lambda (rdn)
1786      (if (stringp (car rdn))
1787          (let ((entry (assoc (car rdn) epg-dn-type-alist)))
1788            (if entry
1789                (format "%s=%s" (cdr entry) (cdr rdn))
1790              (format "%s=%s" (car rdn) (cdr rdn))))
1791        (concat "(" (epg-decode-dn rdn) ")")))
1792    alist
1793    ", "))
1794
1795 (provide 'epg)
1796
1797 ;;; epg.el ends here