* epg.el (epg--status-BEGIN_DECRYPTION): New function; reset 'plaintext
[elisp/epg.git] / ChangeLog
1 2007-03-08  Daiki Ueno  <ueno@unixuser.org>
2
3         * epg.el (epg-list-keys): Parse GnuPG's print_string escape.
4         (epg-wait-for-plaintext): New function.
5         (epg--status-PLAINTEXT_LENGTH): New function.
6         (epg-decrypt-string): Don't use a temp output file.
7         (epg--status-BEGIN_DECRYPTION): New function; reset 'plaintext
8         result.
9         (epg--status-DECRYPTION_OKAY): Copy 'plaintext result to
10         'decrypted-plaintext.
11
12 2007-03-08  Daiki Ueno  <ueno@unixuser.org>
13
14         * epa-mail.el (epa-mail-mode-hook): New variable.
15         (epa-mail-mode-on-hook): New variable.
16         (epa-mail-mode-off-hook): New variable.
17
18         * epg.el (epg--start): Make the process-buffer unibyte.
19         (epg--status-USERID_HINT): Decode user-id.
20         (epg--status-IMPORTED): Decode user-id.
21
22 2007-03-07  Daiki Ueno  <ueno@unixuser.org>
23
24         * epg.el (epg--start): Don't specify --use-agent if the protocol
25         is CMS; set coding-system-for-read to binary.
26         (epg--status-*SIG): Decode user-id.
27
28 2007-02-02  Daiki Ueno  <ueno@unixuser.org>
29
30         * epa-file.el (epa-file-write-region): Set a dummy filename
31         for buffer-file-name when calling select-safe-coding-system.
32
33 2007-01-30  Daiki Ueno  <ueno@unixuser.org>
34
35         * epg.el (epg-last-status): New variable.
36         (epg--process-filter): Set epg-last-status after calling a status
37         handler.
38         (epg--prompt-GET_BOOL): New function.
39         (epg--prompt-GET_BOOL-untrusted_key.override): New function.
40         (epg--status-GET_BOOL): Call epg--prompt-GET_BOOL-* instead of
41         y-or-n-p.
42
43 2007-01-29  Daiki Ueno  <ueno@unixuser.org>
44
45         * EasyPG: Version 0.0.10 released.
46         * configure.ac: Bump up version.
47
48 2007-01-29  Daiki Ueno  <ueno@unixuser.org>
49
50         * epg-config.el: Require epg-package-info.
51         * configure.ac: Generate epg-package-info.el.
52         * Makefile.am (DISTCLEANFILES): Added epg-package-info.el.
53         * COMPILE (epg-modules): Added epg-package-info.
54         * epg-package-info.el.in: New file.
55
56 2007-01-29  Daiki Ueno  <ueno@unixuser.org>
57
58         * epa-setup.el (epa-mail-mode): Autoload; setup mail-mode-hook.
59         * epa.el: Removed epa-*-mail stuff.
60         * Makefile.am (EXTRA_DIST): Added epa-mail.el.
61         * COMPILE (epg-modules): Added epa-mail.
62         * epa-mail.el: New file.
63
64 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
65
66         * epg-pgp50i.el: Removed.
67
68         * epa.el (epa-key-list-mode-map): Renamed from epa-keys-mode-map.
69         (epa-key-list-mode): Renamed from epa-keys-mode.  All callers
70         changed.
71
72         * epg.el (epg--status-VALIDSIG): Don't set expiration-time if it
73         is "0".
74         (epg--make-sub-key-1): Ditto.
75         (epg--decode-hexstring): "\\x" -> "\\\\x".
76         (epg--decode-quotedstring): Ditto.
77
78         * pgg-epg.el (pgg-epg-encrypt-region): Ask a user whether to skip a
79         recipient whose public key is not available.
80         * epa.el (epa-encrypt-mail): Ask a user whether to skip a
81         recipient whose public key is not available.
82
83 2007-01-04  Daiki Ueno  <ueno@unixuser.org>
84
85         * epa.el (epa-decrypt-mail): Renamed from epa-decrypt.
86         (epa-verify-mail): Renamed from epa-verify.
87         (epa-sign-mail): Renamed from epa-sign.
88         (epa-encrypt-mail): Renamed from epa-encrypt.
89         (epa-import-mail): Renamed from epa-import.
90
91         * configure.ac: Don't exit if GnuPG (>= 1.4.3) is unavailable.
92
93         * epg.el (epg-signature-to-string): Print creation-time and used
94         pubkey-algorithm.
95         (epg-sign-string): If the GnuPG version is earlier than 1.4.3,
96         fallback to use a temp file as an input.
97         (epg-encrypt-string): Ditto.
98
99 2006-12-31  Daiki Ueno  <ueno@unixuser.org>
100
101         * epa.el (epa-mail-modes): New user option.
102         (epa--mail-mode-p): New function.
103         (epa-sign): Use it.
104         (epa-encrypt): Use it.
105         (epa--find-coding-system-for-mime-charset): New function.
106         (epa-decrypt-armor-in-region): Use it.
107         (epa-progress-callback-function): Use handback as the prompt.
108         (epa-encrypt-region): Take 4th argument SIGN.
109         (epa-encrypt): Ditto.
110
111 2006-12-31  Daiki Ueno  <ueno@unixuser.org>
112
113         * epa.el (epa--derived-mode-p): New alias.
114         (epa-sign): Use it.
115         (epa-encrypt): Use it.
116
117 2006-12-31  Daiki Ueno  <ueno@unixuser.org>
118
119         * epa.el (epa--read-signature-type): New function.
120         (epa-decrypt): New command.
121         (epa-verify): New command.
122         (epa-sign): New command.
123         (epa-encrypt): New command.
124         (epa-import-armor-in-region): New command.
125         (epa-import): New command.
126         (epa-decrypt-region): Confirm user to replace the region.
127         (epa-display-info): Delete "*Info*" window.
128
129 2006-12-29  Daiki Ueno  <ueno@unixuser.org>
130
131         * EasyPG: Version 0.0.9 released.
132         * epg-config.el (epg-version-number): Bump up.
133         * configure.ac: Bump up version.
134
135 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
136
137         * epa.el (epa-sign-file): Ask signing key only when a prefix arg
138         is given; ask signature type only when a prefix arg is given.
139         (epa-sign-region): Ditto.
140
141 2006-12-26  Daiki Ueno  <ueno@unixuser.org>
142
143         * epg-config.el (epg-passphrase-coding-system): Default to nil.
144
145 2006-12-20  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
146
147         * epa.el (epa--format-fingerprint-1): New function.
148         (epa--format-fingerprint): Ditto.
149         (epa--show-key): Use it.
150
151 2006-12-20  Daiki Ueno  <ueno@unixuser.org>
152
153         * epa-file.el (epa-file-write-region): Don't attempt to write the
154         region to "/" to determine safe coding-system.
155
156         * epa.el (epa-list-keys): Abolished PROTOCOL arg.
157         (epa-sign-file): Save the output to *.p7s or *.p7m file if
158         epa-protocol is CMS.
159         (epa-encrypt-file): Ditto.
160         (epa-last-coding-system-specified): New variable.
161         (epa-decrypt-region): Try to decode with the
162         epa-coding-system-used text property.
163         (epa--select-safe-coding-system): New function.
164         (epa-verify-region): Try to decode with the epa-coding-system-used
165         text property.
166         (epa-sign-region): Query user to select coding-system to encode;
167         set the epa-coding-system-used text property on the result.
168         (epa-encrypt-region): Ditto.
169
170 2006-12-19  Daiki Ueno  <ueno@unixuser.org>
171
172         * epg.el (epg-export-keys-to-file): Fixed a typo.
173
174         * epa.el (epa-protocol): New user option.
175         (epa-sign-region): --armor & --textmode.
176         (epa-encrypt-region): Ditto.
177         (epa-list-keys): If prefix-arg is specified, use "OpenPGP" as the
178         default protocol.
179         (epa-import-keys-region): New command.
180         (epa-insert-keys): New command.
181         (epa--insert-keys): Renamed from epa-insert-keys.
182
183 2006-12-11  Daiki Ueno  <ueno@unixuser.org>
184
185         * pgg-epg.el (pgg-epg-decrypt-region): Don't call
186         decode-coding-string if it is not bound.
187
188         * epa-file.el (epa-file--encode-coding-string): New alias.
189         (epa-file--decode-coding-string): New alias.
190         (epa-file-write-region): Use epa-file--encode-coding-string.
191         (epa-file-decode-and-insert): Use epa-file--decode-coding-string.
192
193         * epa.el (epa--encode-coding-string): New alias.
194         (epa--decode-coding-string): New alias.
195         (epa-verify-region): Use epa--encode-coding-string.
196         (epa-sign-region): Ditto; use epa--decode-coding-string.
197         (epa-encrypt-region): Use epa--encode-coding-string.
198
199         * epg.el (epg--encode-coding-string): New alias.
200         (epg--status-GET_HIDDEN): Use it.
201
202 2006-11-29  Daiki Ueno  <ueno@unixuser.org>
203
204         * EasyPG: Version 0.0.8 released.
205         * epg-config.el (epg-version-number): Bump up.
206         * configure.ac: Bump up version.
207
208 2006-11-20  Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
209
210         * epa-file.el (epa-file-encrypt-to): New file local variable.
211         (epa-file-write-region): Specify recipients by epa-file-encrypt-to.
212
213 2006-11-26  Daiki Ueno  <ueno@unixuser.org>
214
215         * epa.el (epa-sign-file): Query signature type at a time.
216         (epa-decrypt-file): Display output file name on completion.
217         (epa-sign-file): Ditto.
218         (epa-encrypt-file): Ditto.
219
220 2006-11-25  Daiki Ueno  <ueno@unixuser.org>
221
222         * epa.el (epa-keys-mode): Don't call widget-setup.
223         (epa-list-keys): Call widget-setup here.
224         (epa-select-keys): Ditto.
225
226 2006-11-24  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
227
228         * epg.el (epg-delete-keys): Remove redundant argument for `error'
229         and fix a close parenthesis.
230
231 2006-11-24  Daiki Ueno  <ueno@unixuser.org>
232
233         * epg.el (epg--status-GET_HIDDEN): Encode passphrase with eol-type LF.
234         Reported by Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>.
235         cf. <emacs-mime-ja:02090>
236
237 2006-11-23  Daiki Ueno  <ueno@unixuser.org>
238
239         * epa.el (epa-sign-region): Query signature type at a time.
240
241 2006-11-22  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
242
243         * epg.el (epg-context-set-passphrase-callback): Add optional
244         argument `handback'.
245         (epg-context-set-progress-callback): Ditto.
246
247 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
248
249         * epa.el (epa--key-widget-value-create): Allow empty user IDs.
250         (epa--show-key): Ditto.
251         Reported by Werner Koch <wk@gnupg.org>.
252
253         * epg.el (epg--start): Don't specify --enable-progress-filter for
254         gpgsm.
255         (epg--status-PROGRESS): Check if progress-callback is set.
256
257 2006-11-12  Daiki Ueno  <ueno@unixuser.org>
258
259         * epg.el (epg-error): New error.
260         (epg--check-error-for-decrypt): New function.
261         (epg-decrypt-file): Use it.
262         (epg-decrypt-string): Use it.
263         (epg--start): Added a very basic test to check whether to specify
264         --use-agent.
265
266         * epa.el (epa-decrypt-file): Expand file name.
267         (epa-verify-file): Ditto.
268         (epa-import-keys): Ditto.
269
270 2006-11-12  Daiki Ueno  <ueno@unixuser.org>
271
272         * epg.el (epg-delete-keys): Decode delete-problem.
273
274         * epa.el (epa-popup-info-window): Turn on by default.
275         (epa-display-info): Split selected window instead of pop-to-buffer.
276
277 2006-11-12  Daiki Ueno  <ueno@unixuser.org>
278
279         * epa.el (epa-display-info): Generalized; renamed from
280         epa-display-verify-result.
281         (epa-decrypt-file): Use it.
282         (epa-verify-file): Use it.
283         (epa-decrypt-region): Use it.
284         (epa-verify-region): Use it.
285         (epa-import-keys): Show import result.
286         (epa-display-verify-result): Make it obsolete.
287
288         * epg.el (epg-start-sign-keys): Make it obsolete; signing a key is
289         out of scope.
290         (epg-sign-keys): Make it obsolete.
291         (epg-make-import-status): New object epg-import-status.
292         (epg-make-import-result): New object epg-import-result.
293         (epg--status-IMPORT_RES): New function.
294         (epg-import-result-to-string): New function.
295
296         * epa.el (epa-keys-mode-map): Don't bind epa-sign-keys.
297         (epa-sign-keys): Make it obsolete.
298
299 2006-11-11  Daiki Ueno  <ueno@unixuser.org>
300
301         * epg.el (epg-start-sign): Don't set --armor nor --textmode if
302         mode is set for a cleartext signature.
303         (epg-make-context): New slot "sig-notations".
304         (epg--args-from-sig-notations): New function.
305         (epg-start-sign): Specify --sig-notation or --sig-policy-url if
306         desired.
307         (epg-start-encrypt): Ditto.
308         (epg-make-signature): New slot "notations".
309         (epg--status-NOTATION_NAME): New function.
310         (epg--status-NOTATION_DATA): New function.
311         (epg--status-POLICY_URL): New function.
312
313 2006-10-29  Daiki Ueno  <ueno@unixuser.org>
314
315         * EasyPG: Version 0.0.7 released.
316         * epg-config.el (epg-version-number): Bump up.
317         * configure.ac: Bump up version.
318
319 2006-10-29  Daiki Ueno  <ueno@unixuser.org>
320
321         * epa-file.el
322         (epa-file-cache-passphrase-for-symmetric-encryption): New user
323         option.
324
325 2006-10-12  Daiki Ueno  <ueno@unixuser.org>
326
327         * epg.el (epg-start-verify): Fixed a clearsign verification bug.
328         Reported by Hirohisa Yamaguchi <umq@ueo.co.jp>.
329
330 2006-09-29  Daiki Ueno  <ueno@unixuser.org>
331
332         * EasyPG: Version 0.0.6 released.
333         * epg.el (epg-version-number): Bump up.
334         * configure.ac: Bump up version.
335
336 2006-09-29  Daiki Ueno  <ueno@unixuser.org>
337
338         * epa.el (epa-verify-cleartext-in-region): Renamed from
339         epa-verify-armor-in-region.
340
341         * epg.el (epg-passphrase-callback-function): Suggest to use
342         epa-passphrase-callback-function instead.
343         (epg-start-verify): Don't specify --verify if SIGNATURE is a
344         normal or a clear text signature.
345         (epg-verify-file): Mention that the plaintext will be stored into
346         the file PLAIN after successful verification.
347         (epg-verify-string): Mention that the plaintext will be returned
348         after successful verification.
349
350 2006-09-27  Daiki Ueno  <ueno@unixuser.org>
351
352         * epa-file.el (epa-file-insert-file-contents): Set progress callback.
353         (epa-file-write-region): Ditto.
354
355         * epa.el (epa-decrypt-file): Set callbacks.
356         (epa-sign-file): Ditto.
357         (epa-encrypt-file): Ditto.
358         (epa-decrypt-region): Ditto.
359         (epa-sign-region): Ditto.
360         (epa-encrypt-region): Ditto.
361         (epa-sign-keys): Ditto.
362
363         * epg.el (epg-progress-callback-function): Removed.
364
365 2006-09-24  Daiki Ueno  <ueno@unixuser.org>
366
367         * epa.el (epa-passphrase-callback-function): Moved from epg.el.
368         (epa-progress-callback-function): Ditto.
369         * epg.el (epg-passphrase-callback-function): Made it obsolete.
370         (epg-progress-callback-function): Ditto.
371
372 2006-09-23  Daiki Ueno  <ueno@unixuser.org>
373
374         * epg.el (epg-start-decrypt): Append "--" to the end of options.
375         (epg-start-verify): Ditto.
376         (epg-start-sign): Ditto.
377         (epg-start-encrypt): Ditto.
378         (epg-start-import-keys): Ditto.
379         (epg-start-generate-key): Ditto.
380
381 2006-09-23  Daiki Ueno  <ueno@unixuser.org>
382
383         * epg.el (epg-make-context): Don't set progress-callback by
384         default.
385         (epg--start): Don't specify --enable-progress-filter if
386         progress-callback is not set.
387         (epg--status-GET_HIDDEN): Signal an error if passphrase-callback
388         is not set.
389
390 2006-09-15  Daiki Ueno  <ueno@unixuser.org>
391
392         * epg.el (epg-progress-callback-function): Show the percentage.
393
394 2006-09-15  Juliusz Chroboczek <Juliusz.Chroboczek@pps.jussieu.fr>
395
396         * pgg-epg.el (mml2015-gpg-extract-signature-details): Fixed a typo.
397
398 2006-09-13  Daiki Ueno  <ueno@unixuser.org>
399
400         * epg-config.el (epg-passphrase-coding-system): Renamed from
401         epg-locale-coding-system.
402
403 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
404
405         * epa-file.el (epa-file-decode-and-insert): New function which
406         utilizes decode-coding-inserted-region if available.
407         (epa-file-insert-file-contents): Use it.
408
409         * epg.el (epg--start): Specify --enable-progress-filter in
410         imitation of GPGME.
411         (epg-progress-callback-function): Remove a couple of %%'s.
412
413 2006-09-05  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
414
415         * epg-config.el (epg-configuration): Fixed the last change;
416         collect configuration other than group and algorithm.
417
418 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
419
420         * epg-config.el (epg-debug): Moved from epg.el.
421         (epg-configuration): Parse group configuration.
422         (epg-expand-group): New function.
423
424 2006-09-04  Daiki Ueno  <ueno@unixuser.org>
425
426         * EasyPG: Version 0.0.5 released.
427         * epg.el (epg-version-number): Bump up.
428         * configure.ac: Bump up version.
429
430 2006-09-04  Daiki Ueno  <ueno@unixuser.org>
431
432         * epg-config.el (epg-locale-coding-system): New user option.
433
434         * epg.el (epg--list-keys-1): Respect epg-gpg-home-directory.
435         (epg--clear-string): New function.
436         (epg--status-GET_HIDDEN): Encode passphrase with
437         terminal-coding-system.
438
439         * epg-config.el (epg-gpg-minimum-version): New constant.
440         (epg-config--parse-version): New function.
441         (epg-config--compare-version): New function.
442         (epg-configuration): Respect epg-gpg-home-directory.
443
444 2006-09-03  Daiki Ueno  <ueno@unixuser.org>
445
446         * epg-config.el: New file; moved GnuPG configuration check from
447         epg.el.
448
449 2006-09-02  Daiki Ueno  <ueno@unixuser.org>
450
451         * epg.el (epg-check-configuration): New function.
452         (epg-gpg-home-directory): New user option.
453
454         * pgg-epg.el (pgg-epg-lookup-key): New function.
455
456 2006-07-29  Daiki Ueno  <ueno@unixuser.org>
457
458         * EasyPG: Version 0.0.4 released.
459         * epg.el (epg-version-number): Bump up.
460         * configure.ac: Bump up version.
461
462 2006-07-29  Daiki Ueno  <ueno@unixuser.org>
463
464         * acinclude.m4 (AC_CHECK_GPG): Run $3 if there is no gpg executable.
465
466 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
467
468         * epg.el (epg-start-encrypt): Extract primary key ID from
469         epg-context-signers.
470         Thanks to Steve Youngs <steve@sxemacs.org>
471
472         * pgg-epg.el (pgg-epg-encrypt-region): Fixed a bug; it didn't
473         give CONTEXT to epg-list-keys.
474         Thanks to Steve Youngs <steve@sxemacs.org>
475
476 2006-07-18  Daiki Ueno  <ueno@unixuser.org>
477
478         * epg-pgp50i.el (epg-pgp50i--process-filter): Use
479         epg-process-filter-running instead of epg-pgp50i-status; Don't
480         save-excursion during handler execution.
481         (epg-pgp50i--read-line): Renamed from epg-pgp50i--wait-for-line;
482         don't allow process input.
483         (epg-pgp50i--parse-time): New function.
484         (epg-pgp50i--status-BAD_SIGNATURE): New function.
485
486         * epg.el (epg--process-filter): Don't save-excursion during
487         handler execution.
488
489 2006-07-18  Daiki Ueno  <ueno@unixuser.org>
490
491         * acinclude.m4 (AC_CHECK_GPG): Renamed from AC_PATH_GPG.
492
493         * epg.el (epg-process-filter-running): New variable.
494         (epg--start): Setup epg-process-filter-running.
495         (epg--process-filter): Allow only one status handler to run at a
496         time; update epg-read-point everytime the point changes.
497
498 2006-07-14  Daiki Ueno  <ueno@unixuser.org>
499
500         * epg-pgp50i.el: New file.
501
502 2006-07-13  Daiki Ueno  <ueno@unixuser.org>
503
504         * acinclude.m4 (AC_PATH_GPG): New macro.
505         * configure.ac: Check gpg version.
506         Suggested by Max Froumentin <max@lapin-bleu.net>
507
508 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
509
510         * epg.el (epg--status-ERRSIG): Don't remove the last verify-result.
511         (epg-signature-to-string): Remove a trailing whitespace.
512
513         * epa.el (epa-keys-mode-map): Bind return to epa-toggle-mark.
514         (epa-toggle-mark): New command.
515
516 2006-07-04  Daiki Ueno  <ueno@unixuser.org>
517
518         * pgg-epg.el (pgg-epg-sign-region): Select the signing key matched
519         with pgg-default-user-id.
520         Reported by Elias Oltmanns <oltmanns@uni-bonn.de>
521
522 2006-07-01  Daiki Ueno  <ueno@unixuser.org>
523
524         * epa.el (epa-select-keys): If SECRET is specified, select a
525         primary secret key by default.
526
527 2006-06-29  Daiki Ueno  <ueno@unixuser.org>
528
529         * EasyPG: Version 0.0.3 released.
530         * epg.el (epg-version-number): Bump up.
531         * configure.ac: Bump up version.
532
533 2006-06-12  Daiki Ueno  <ueno@unixuser.org>
534
535         * epa-file.el (epa-file-insert-file-contents): Don't move the
536         point to the end of the inserted region.
537         Reported by doug <douglas.bagley@gmail.com>
538
539 2006-06-01  Daiki Ueno  <ueno@unixuser.org>
540
541         * epa-file.el (epa-file-insert-file-contents): Support partial read.
542
543 2006-05-30  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
544
545         * epa-file.el (epa-file-write-region): Encode the plain text with
546         coding-system-for-write.
547
548 2006-05-30  Daiki Ueno  <ueno@unixuser.org>
549
550         * epa-file.el (epa-file-insert-file-contents):
551         Decode the decrypted text with coding-system-for-read.
552
553 2006-05-29  Daiki Ueno  <ueno@unixuser.org>
554
555         * EasyPG: Version 0.0.2 released.
556         * epg.el (epg-version-number): Bump up.
557         * configure.ac: Bump up version.
558
559 2006-05-29  Daiki Ueno  <ueno@unixuser.org>
560
561         * epg.el (epg--time-from-seconds): New function.
562         (epg--status-ERRSIG): Convert seconds from epoch to encoded-time.
563         (epg--status-VALIDSIG): Ditto.
564         (epg--status-KEYEXPIRED): Ditto.
565
566 2006-05-28  Daiki Ueno  <ueno@unixuser.org>
567
568         * epg.el (epg-start-import-keys): Don't specify filename if keys
569         is a string data.
570
571 2006-05-27  Daiki Ueno  <ueno@unixuser.org>
572
573         * epg.el (epg--process-filter): Pass epg-context instead of
574         process to status handlers.
575         (epg--status-NO_PUBKEY): Check if the previous signature's key-id
576         matches with the given key-id.
577
578 2006-05-26  Daiki Ueno  <ueno@unixuser.org>
579
580         * epg.el (epg--status-NO_PUBKEY): Replace the previous signature's
581         status from 'error to 'no-pubkey.
582         (epg--status-ERRSIG): Just add 'error signature to the verify result.
583
584         * epa.el (epa-insert-keys): Renamed from epa-list-keys-1; don't
585         disable inhibit-quit here; make text-properties nonsticky.
586         (epa-popup-info-window): New user option.
587         (epa-info-window-height): New user option.
588         (epa-display-verify-result): New function.
589         (epa-decrypt-file): Use it.
590         (epa-verify-file): Use it.
591         (epa-decrypt-region): Use it.
592         (epa-verify-region): Use it.
593
594         * epg.el (epg-make-context): New slot "operation".
595         (epg-passphrase-callback-function): Confirm passphrase when
596         performing symmetric encryption.
597
598 2006-05-25  Daiki Ueno  <ueno@unixuser.org>
599
600         * epa.el (epa-decrypt-file): Display verify result if the message
601         is signed.
602         (epa-decrypt-region): New command.
603         (epa-verify-region): New command.
604         (epa-decrypt-armor-in-region): New command.
605         (epa-verify-armor-in-region): New command.
606         (epa-sign-region): New command.
607         (epa-encrypt-region): New command.
608
609 2006-05-11  Daiki Ueno  <ueno@unixuser.org>
610
611         * epa.el (epa-armor): New user option.
612         (epa-textmode): New user option.
613
614 2006-05-02  Daiki Ueno  <ueno@unixuser.org>
615
616         * epg.el (epg-make-key-signature): New object epg-key-signature.
617         (epg-list-keys): Collect key signatures.
618         (epg-make-sub-key): Renamed secret -> secret-p.
619         (epg-list-keys-postprocess-one-key): Abolished.
620         (epg-list-keys): Reverse all keys, sub-keys, user-ids, and key
621         signatures by itself.
622         (epg-no-data-reason-alist): New constant.
623         (epg-unexpected-reason-alist): New constant.
624
625 2006-05-01  Daiki Ueno  <ueno@unixuser.org>
626
627         * epg.el (epg-invalid-recipients-reason-alist): Renamed.
628         (epg-delete-problem-reason-alist): Renamed.
629         (epg-import-ok-reason-alist): New constant.
630         (epg-import-problem-reason-alist): New constant.
631         (epg-status-IMPORTED): New function.
632         (epg-status-IMPORT_OK): New function.
633         (epg-status-IMPORT_PROBLEM): New function.
634         (epg-start-import-keys): Don't use a temporary output file.
635         (epg-start-receive-keys): New function.
636         (epg-import-keys-from-server): New function.
637         (epg-receive-keys): Alias to epg-import-keys-from-server.
638
639 2006-05-01  Daiki Ueno  <ueno@unixuser.org>
640
641         * epg.el (epg-start): Signal an error if the process of CONTEXT is
642         already running for other operations.
643         (epg-flush): Abolished.
644         (epg-start-generate-key): New function.
645         (epg-generate-key-from-file): New function.
646         (epg-generate-key-from-string): New function.
647         (epg-status-KEY_CREATED): New function.
648         (epg-status-KEY_NOT_CREATED): New function.
649         (epg-new-signature-type-alist): New variable.
650         (epg-make-new-signature): New object epg-new-signature.
651         (epg-status-SIG_CREATED): Set epg-new-signature object.
652         (epg-new-signature-to-string): New function.
653         (epg-make-signature): Added slots for signature class and version.
654         (epg-start-sign): Fixed rule of the MODE argument.
655
656 2006-04-30  Daiki Ueno  <ueno@unixuser.org>
657
658         * epa.el (epa-delete-keys): Support deletion of secret keys.
659
660         * pgg-epg.el (pgg-epg-decrypt-region): Convert line endings of the
661         decrypted text.
662
663         * epg.el (epg-read-output): Don't convert line endings of the
664         output file.
665         (epg-cancel): Set 'error result.
666
667 2006-04-29  Daiki Ueno  <ueno@unixuser.org>
668
669         * epg.el (epg-make-signature): Removed user-id; added
670         creation-time, expiration-time, pubkey-algorithm,
671         digest-algorithm.
672         (epg-process-sentinel): Abolished.
673         (epg-signature-to-string): Decode DN.
674         (epg-list-keys): Cache user-id in epg-user-id-alist.
675         (epg-make-user-id): Renamed name -> string.
676
677 2006-04-29  Daiki Ueno  <ueno@unixuser.org>
678
679         * epg.el (epg-status-ERRSIG): New function.
680         (epg-verify-file): Signal an error if we encounter ERRSIG status.
681         (epg-verify-string): Ditto.
682
683 2006-04-28  Daiki Ueno  <ueno@unixuser.org>
684
685         * epg.el: Added typecheck to accessors to objects.
686
687 2006-04-26  Daiki Ueno  <ueno@unixuser.org>
688
689         * epg.el (epg-status-GET_HIDDEN): Pass epg-context as the first
690         argument of passphrase-callback.
691         (epg-status-PROGRESS): Ditto.
692
693 2006-04-26  Daiki Ueno  <ueno@unixuser.org>
694
695         * epa.el (epa-select-keys): Don't set inhibit-quit when
696         recursive-edit is called.
697         (epg-cancel): New function.
698
699 2006-04-25  Daiki Ueno  <ueno@unixuser.org>
700
701         * epg.el (epg-process-sentinel): New function; set 'error if gpg
702         process exited abnormally, but we have not received an error
703         response from it.
704         (epg-sign-file): Signal an error only when a signature is not
705         created.
706         (epg-sign-string): Ditto.
707         (epg-encrypt-file): Signal an error if SIGN is specified and
708         signature is not created.
709         (epg-encrypt-string): Ditto.
710
711 2006-04-22  Daiki Ueno  <ueno@unixuser.org>
712
713         * epa.el (epa-key-widget-value-create): Decode DN.
714         (epa-list-keys): Add the PROTOCOL argument.
715         (epa-select-keys): Require CONTEXT as the first argument.
716
717         * epg.el (epg-gpgsm-program): New user option.
718         (epg-dn-type-alist): New variable.
719         (epg-start): Don't specify --command-fd if protocol is CMS.
720         (epg-list-keys): Require CONTEXT as the first argument.
721         (epg-dn-from-string): New function.
722         (epg-decode-dn): New function.
723
724 2006-04-21  Daiki Ueno  <ueno@unixuser.org>
725
726         * epa.el (epa-sign-keys): New command.
727
728         * epg.el (epg-start-sign-keys): New function.
729         (epg-sign-keys): New function.
730         (epg-status-GET_HIDDEN): Enable local quit.
731         (epg-status-GET_BOOL): Ditto.
732         (epg-status-GET_LINE): Ditto.
733
734 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
735
736         * epa.el (epa-list-keys-1): Add 'epa-list-keys property to keylist
737         region.
738
739 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
740
741         * pgg-epg.el (pgg-epg-secret-key-id-list): New variable.
742         (pgg-epg-passphrase-callback): New function.
743
744         * epa.el (epa-select-keys): Added "Cancel" button.
745
746 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
747
748         * epg.el (epg-signature-to-string): New function.
749
750 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
751
752         * epa-file.el (epa-file-write-region): RECIPIENTS is now a list of
753         key objects.
754         * epa-dired.el (epa-dired-do-encrypt): RECIPIENTS is now a list of
755         key objects.
756
757         * epa.el (epa-select-keys): Added MODE argument.
758         (epa-encrypt-file): RECIPIENTS is now a list of key objects.
759
760         * epg.el (epg-status-SIG_CREATED): New function.
761         (epg-start-sign): epg-context-signers is now a list of key objects.
762         (epg-start-encrypt): RECIPIENTS is now a list of key objects.
763
764 2006-04-19  Daiki Ueno  <ueno@unixuser.org>
765
766         * epa.el (epa-verify-file): Show results in minibuffer.
767         * epg.el (epg-debug-buffer): New variable.
768         (epg-flush): New function.
769
770 2006-04-18  Daiki Ueno  <ueno@unixuser.org>
771
772         * epa.el (epa-export-keys): New command.
773         * epg.el (epg-start-export-keys): Accept a list of epg-key object
774         instead of a regexp.
775
776 2006-04-18  Daiki Ueno  <ueno@unixuser.org>
777
778         * epa.el (epa-keys-mode-map): Bind epa-list-keys; epa-import-key.
779         (epa-import-key): New command.
780
781         * epg.el (epg-delete-problem-alist): New constant.
782         (epg-status-DELETE_PROBLEM): New function.
783         (epg-start-delete-key): New function.
784         (epg-delete-key): New function.
785         (epg-wait-for-completion): Add the NO-EOF argument.
786
787 2006-04-18  Daiki Ueno  <ueno@unixuser.org>
788
789         * epg.el (epg-start): Insert the command-line arguments to the
790         debug buffer.
791         (epg-start-encrypt): Wait for BEGIN_ENCRYPTION.
792         (epg-start-delete-key): New function.
793         (epg-delete-key): New function.
794
795         * epa.el (epa-key): New widget.
796         (epa-key-widget-action): New function.
797         (epa-key-widget-value-create): New function.
798         (epa-key-widget-button-face-get): New function.
799         (epa-key-widget-help-echo): New function.
800
801 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
802
803         * epa-file.el (epa-file-write-region): Check if START is a string.
804
805 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
806
807         * epa-file.el: Rewritten with file-name-handler.
808         (epa-file-handler): New variable.
809         (epa-file-enable): New command.
810         (epa-file-disable): New command.
811
812         * epa-setup.el: Call epa-file-enable.
813
814 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
815
816         * epa-file.el (epa-passphrase): New variable.
817         (epa-file-passphrase-callback-function): New function.
818         (epa-find-file): Reset buffer-undo-list; set
819         buffer-file-coding-system to last-coding-system-used after
820         decoding.
821
822 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
823
824         * epa-file.el (epa-write-file): Try to write region to "/" to get
825         last-coding-system-used to be set.
826
827 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
828
829         * epa-file.el: New implementation of epf.el.
830
831         * epf.el: Abolished.
832
833 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
834
835         * epa.el (epa-verify-file): Display verify result.
836
837         * epg.el (epg-invalid-recipients-alist): New variable.
838         (epg-status-INV_RECP): New function.
839         (epg-status-NO_RECP): New function.
840
841         * epa.el (epa-keys-mode-map): Bind epa-decrypt-file,
842         epa-verify-file, epa-sign-file, and epa-encrypt-file.
843         (epa-decrypt-file): New function imported from epa-dired.el.
844         (epa-verify-file): New function imported from epa-dired.el.
845         (epa-sign-file): New function imported from epa-dired.el.
846         (epa-encrypt-file): New function imported from epa-dired.el.
847
848 2006-04-16  Daiki Ueno  <ueno@unixuser.org>
849
850         * epa.el (epa-select-keys): Renamed from epa-ask-keys; use
851         recursive-edit.
852         * epa-dired.el (epa-dired-encrypt-file): Use epa-select-keys.
853
854 2006-04-16  Daiki Ueno  <ueno@unixuser.org>
855
856         * epa-setup.el: New file.
857         * epa-dired.el: New file.
858
859         * epg.el (epg-colons-pub-spec): Abolished.
860         (epg-colons-sec-spec): Abolished.
861         (epg-colons-uid-spec): Abolished.
862         (epg-colons-fpr-spec): Abolished.
863         (epg-key-validity-alist): New variable.
864         (epg-key-capablity-alist): New variable.
865         (epg-make-key): New object epg-key.
866         (epg-make-sub-key): New object epg-sub-key.
867         (epg-make-user-id): New object epg-user-id.
868         (epg-list-keys-1): Renamed from epg-list-keys.
869         (epg-list-keys): Rewritten.
870
871 2006-04-15  Daiki Ueno  <ueno@unixuser.org>
872
873         * epg.el (epg-list-keys): Make the NAME argument optional.
874
875 2006-04-13  Daiki Ueno  <ueno@unixuser.org>
876
877         * epa.el: Added header.
878
879         * epg.el (epg-list-keys): Specify --with-fingerprint.
880         (epg-colons-fpr-spec): New variable.
881         (epg-colons-pub-spec): Renamed trust -> validity and ownertrust ->
882         owner-trust.
883         (epg-colons-sec-spec): Ditto.
884         (epg-colons-uid-spec): Renamed trust -> validity.
885
886 2006-04-13  Daiki Ueno  <ueno@unixuser.org>
887
888         * epa.el: New file.
889
890         * epg.el (epg-cipher-algorithm-alist): New constant.
891         (epg-pubkey-algorithm-alist): New constant.
892         (epg-digest-algorithm-alist): New constant.
893         (epg-compress-algorithm-alist): New constant.
894         (epg-configuration): New function.
895         (epg-start): Don't specify --yes.
896
897 2006-04-13  Daiki Ueno  <ueno@unixuser.org>
898
899         * epg.el (epg-make-data-from-file): New function.
900         (epg-make-data-from-string): New function.
901         (epg-data-file): New function.
902         (epg-data-string): New function.
903         (epg-start-decrypt): Get a cipher text from a data object.
904         (epg-delete-output-file): New function.
905         (epg-decrypt-file): Add the 3rd argument PLAIN to specify where
906         the output goes.
907         (epg-start-verify): Get a signature and signed-text from a data
908         object.
909         (epg-verify-file): Added the 3rd argument PLAIN to specify where
910         the output goes; return the plain text if PLAIN is nil.
911         (epg-verify-string): Return the plain text.
912         (epg-start-sign): Get a plain text from a data object.
913         (epg-sign-file): Added the 3rd argument SIGNATURE to specify where
914         the output goes.
915         (epg-start-encrypt): Get a plain text from a data object.
916         (epg-encrypt-file): Added the 4th argument CIPHER to specify where
917         the output goes.
918         (epg-start-import-keys): Get keys from a data object.
919         (epg-import-keys-1): New function.
920         (epg-import-keys-from-file): Use it.
921         (epg-import-keys-from-string): Use it.
922
923 2006-04-12  Daiki Ueno  <ueno@unixuser.org>
924
925         * epf.el: Renamed from epg-file.el.
926
927 2006-04-12  Daiki Ueno  <ueno@unixuser.org>
928
929         * epg.el (epg-status-GET_BOOL): New function.
930         (epg-status-GET_LINE): New function.
931         (epg-prompt-alist): New variable, to be filled.
932
933         * pgg-epg.el (mml2015-gpg-extract-signature-details): New function.
934         * epg.el (epg-signature-fingerprint): New function.
935         (epg-signature-set-fingerprint): New function.
936         (epg-status-VALIDSIG): New function.
937
938         * epg.el (epg-reset): Don't reset result.
939         (epg-start-decrypt): Reset result before epg-start.
940         (epg-start-verify): Ditto.
941         (epg-start-sign): Ditto.
942         (epg-start-encrypt): Ditto.
943         (epg-start-export-keys): Ditto.
944         (epg-start-import-keys): Ditto.
945
946         * Makefile.am (EXTRA_DIST): Added pgg-epg.el.
947         * pgg-epg.el: New file.
948
949         * epg.el (epg-start-export-keys): New function.
950         (epg-export-keys): New function.
951         (epg-start-import-keys): New function.
952         (epg-import-keys): New function.
953         (epg-verify-file): New function.
954
955         * epg-file.el (epg-file-write-region): Support public key encryption.
956
957         * epg.el (epg-passphrase-callback-function): Always display key-id.
958