* epg.el (epg-start-import-keys): Don't specify filename if keys
[elisp/epg.git] / ChangeLog
1 2006-05-28  Daiki Ueno  <ueno@unixuser.org>
2
3         * epg.el (epg-start-import-keys): Don't specify filename if keys
4         is a string data.
5
6 2006-05-27  Daiki Ueno  <ueno@unixuser.org>
7
8         * epg.el (epg--process-filter): Pass epg-context instead of
9         process to status handlers.
10         (epg--status-NO_PUBKEY): Check if the previous signature's key-id
11         matches with the given key-id.
12
13 2006-05-26  Daiki Ueno  <ueno@unixuser.org>
14
15         * epg.el (epg--status-NO_PUBKEY): Replace the previous signature's
16         status from 'error to 'no-pubkey.
17         (epg--status-ERRSIG): Just add 'error signature to the verify result.
18
19         * epa.el (epa-insert-keys): Renamed from epa-list-keys-1; don't
20         disable inhibit-quit here; make text-properties nonsticky.
21         (epa-popup-info-window): New user option.
22         (epa-info-window-height): New user option.
23         (epa-display-verify-result): New function.
24         (epa-decrypt-file): Use it.
25         (epa-verify-file): Use it.
26         (epa-decrypt-region): Use it.
27         (epa-verify-region): Use it.
28
29         * epg.el (epg-make-context): New slot "operation".
30         (epg-passphrase-callback-function): Confirm passphrase when
31         performing symmetric encryption.
32
33 2006-05-25  Daiki Ueno  <ueno@unixuser.org>
34
35         * epa.el (epa-decrypt-file): Display verify result if the message
36         is signed.
37         (epa-decrypt-region): New command.
38         (epa-verify-region): New command.
39         (epa-decrypt-armor-in-region): New command.
40         (epa-verify-armor-in-region): New command.
41         (epa-sign-region): New command.
42         (epa-encrypt-region): New command.
43
44 2006-05-11  Daiki Ueno  <ueno@unixuser.org>
45
46         * epa.el (epa-armor): New user option.
47         (epa-textmode): New user option.
48
49 2006-05-02  Daiki Ueno  <ueno@unixuser.org>
50
51         * epg.el (epg-make-key-signature): New object epg-key-signature.
52         (epg-list-keys): Collect key signatures.
53         (epg-make-sub-key): Renamed secret -> secret-p.
54         (epg-list-keys-postprocess-one-key): Abolished.
55         (epg-list-keys): Reverse all keys, sub-keys, user-ids, and key
56         signatures by itself.
57         (epg-no-data-reason-alist): New constant.
58         (epg-unexpected-reason-alist): New constant.
59
60 2006-05-01  Daiki Ueno  <ueno@unixuser.org>
61
62         * epg.el (epg-invalid-recipients-reason-alist): Renamed.
63         (epg-delete-problem-reason-alist): Renamed.
64         (epg-import-ok-reason-alist): New constant.
65         (epg-import-problem-reason-alist): New constant.
66         (epg-status-IMPORTED): New function.
67         (epg-status-IMPORT_OK): New function.
68         (epg-status-IMPORT_PROBLEM): New function.
69         (epg-start-import-keys): Don't use a temporary output file.
70         (epg-start-receive-keys): New function.
71         (epg-import-keys-from-server): New function.
72         (epg-receive-keys): Alias to epg-import-keys-from-server.
73
74 2006-05-01  Daiki Ueno  <ueno@unixuser.org>
75
76         * epg.el (epg-start): Signal an error if the process of CONTEXT is
77         already running for other operations.
78         (epg-flush): Abolished.
79         (epg-start-generate-key): New function.
80         (epg-generate-key-from-file): New function.
81         (epg-generate-key-from-string): New function.
82         (epg-status-KEY_CREATED): New function.
83         (epg-status-KEY_NOT_CREATED): New function.
84         (epg-new-signature-type-alist): New variable.
85         (epg-make-new-signature): New object epg-new-signature.
86         (epg-status-SIG_CREATED): Set epg-new-signature object.
87         (epg-new-signature-to-string): New function.
88         (epg-make-signature): Added slots for signature class and version.
89         (epg-start-sign): Fixed rule of the MODE argument.
90
91 2006-04-30  Daiki Ueno  <ueno@unixuser.org>
92
93         * epa.el (epa-delete-keys): Support deletion of secret keys.
94
95         * pgg-epg.el (pgg-epg-decrypt-region): Convert line endings of the
96         decrypted text.
97
98         * epg.el (epg-read-output): Don't convert line endings of the
99         output file.
100         (epg-cancel): Set 'error result.
101
102 2006-04-29  Daiki Ueno  <ueno@unixuser.org>
103
104         * epg.el (epg-make-signature): Removed user-id; added
105         creation-time, expiration-time, pubkey-algorithm,
106         digest-algorithm.
107         (epg-process-sentinel): Abolished.
108         (epg-signature-to-string): Decode DN.
109         (epg-list-keys): Cache user-id in epg-user-id-alist.
110         (epg-make-user-id): Renamed name -> string.
111
112 2006-04-29  Daiki Ueno  <ueno@unixuser.org>
113
114         * epg.el (epg-status-ERRSIG): New function.
115         (epg-verify-file): Signal an error if we encounter ERRSIG status.
116         (epg-verify-string): Ditto.
117
118 2006-04-28  Daiki Ueno  <ueno@unixuser.org>
119
120         * epg.el: Added typecheck to accessors to objects.
121
122 2006-04-26  Daiki Ueno  <ueno@unixuser.org>
123
124         * epg.el (epg-status-GET_HIDDEN): Pass epg-context as the first
125         argument of passphrase-callback.
126         (epg-status-PROGRESS): Ditto.
127
128 2006-04-26  Daiki Ueno  <ueno@unixuser.org>
129
130         * epa.el (epa-select-keys): Don't set inhibit-quit when
131         recursive-edit is called.
132         (epg-cancel): New function.
133
134 2006-04-25  Daiki Ueno  <ueno@unixuser.org>
135
136         * epg.el (epg-process-sentinel): New function; set 'error if gpg
137         process exited abnormally, but we have not received an error
138         response from it.
139         (epg-sign-file): Signal an error only when a signature is not
140         created.
141         (epg-sign-string): Ditto.
142         (epg-encrypt-file): Signal an error if SIGN is specified and
143         signature is not created.
144         (epg-encrypt-string): Ditto.
145
146 2006-04-22  Daiki Ueno  <ueno@unixuser.org>
147
148         * epa.el (epa-key-widget-value-create): Decode DN.
149         (epa-list-keys): Add the PROTOCOL argument.
150         (epa-select-keys): Require CONTEXT as the first argument.
151
152         * epg.el (epg-gpgsm-program): New user option.
153         (epg-dn-type-alist): New variable.
154         (epg-start): Don't specify --command-fd if protocol is CMS.
155         (epg-list-keys): Require CONTEXT as the first argument.
156         (epg-dn-from-string): New function.
157         (epg-decode-dn): New function.
158
159 2006-04-21  Daiki Ueno  <ueno@unixuser.org>
160
161         * epa.el (epa-sign-keys): New command.
162
163         * epg.el (epg-start-sign-keys): New function.
164         (epg-sign-keys): New function.
165         (epg-status-GET_HIDDEN): Enable local quit.
166         (epg-status-GET_BOOL): Ditto.
167         (epg-status-GET_LINE): Ditto.
168
169 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
170
171         * epa.el (epa-list-keys-1): Add 'epa-list-keys property to keylist
172         region.
173
174 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
175
176         * pgg-epg.el (pgg-epg-secret-key-id-list): New variable.
177         (pgg-epg-passphrase-callback): New function.
178
179         * epa.el (epa-select-keys): Added "Cancel" button.
180
181 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
182
183         * epg.el (epg-signature-to-string): New function.
184
185 2006-04-20  Daiki Ueno  <ueno@unixuser.org>
186
187         * epa-file.el (epa-file-write-region): RECIPIENTS is now a list of
188         key objects.
189         * epa-dired.el (epa-dired-do-encrypt): RECIPIENTS is now a list of
190         key objects.
191
192         * epa.el (epa-select-keys): Added MODE argument.
193         (epa-encrypt-file): RECIPIENTS is now a list of key objects.
194
195         * epg.el (epg-status-SIG_CREATED): New function.
196         (epg-start-sign): epg-context-signers is now a list of key objects.
197         (epg-start-encrypt): RECIPIENTS is now a list of key objects.
198
199 2006-04-19  Daiki Ueno  <ueno@unixuser.org>
200
201         * epa.el (epa-verify-file): Show results in minibuffer.
202         * epg.el (epg-debug-buffer): New variable.
203         (epg-flush): New function.
204
205 2006-04-18  Daiki Ueno  <ueno@unixuser.org>
206
207         * epa.el (epa-export-keys): New command.
208         * epg.el (epg-start-export-keys): Accept a list of epg-key object
209         instead of a regexp.
210
211 2006-04-18  Daiki Ueno  <ueno@unixuser.org>
212
213         * epa.el (epa-keys-mode-map): Bind epa-list-keys; epa-import-key.
214         (epa-import-key): New command.
215
216         * epg.el (epg-delete-problem-alist): New constant.
217         (epg-status-DELETE_PROBLEM): New function.
218         (epg-start-delete-key): New function.
219         (epg-delete-key): New function.
220         (epg-wait-for-completion): Add the NO-EOF argument.
221
222 2006-04-18  Daiki Ueno  <ueno@unixuser.org>
223
224         * epg.el (epg-start): Insert the command-line arguments to the
225         debug buffer.
226         (epg-start-encrypt): Wait for BEGIN_ENCRYPTION.
227         (epg-start-delete-key): New function.
228         (epg-delete-key): New function.
229
230         * epa.el (epa-key): New widget.
231         (epa-key-widget-action): New function.
232         (epa-key-widget-value-create): New function.
233         (epa-key-widget-button-face-get): New function.
234         (epa-key-widget-help-echo): New function.
235
236 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
237
238         * epa-file.el (epa-file-write-region): Check if START is a string.
239
240 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
241
242         * epa-file.el: Rewritten with file-name-handler.
243         (epa-file-handler): New variable.
244         (epa-file-enable): New command.
245         (epa-file-disable): New command.
246
247         * epa-setup.el: Call epa-file-enable.
248
249 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
250
251         * epa-file.el (epa-passphrase): New variable.
252         (epa-file-passphrase-callback-function): New function.
253         (epa-find-file): Reset buffer-undo-list; set
254         buffer-file-coding-system to last-coding-system-used after
255         decoding.
256
257 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
258
259         * epa-file.el (epa-write-file): Try to write region to "/" to get
260         last-coding-system-used to be set.
261
262 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
263
264         * epa-file.el: New implementation of epf.el.
265
266         * epf.el: Abolished.
267
268 2006-04-17  Daiki Ueno  <ueno@unixuser.org>
269
270         * epa.el (epa-verify-file): Display verify result.
271
272         * epg.el (epg-invalid-recipients-alist): New variable.
273         (epg-status-INV_RECP): New function.
274         (epg-status-NO_RECP): New function.
275
276         * epa.el (epa-keys-mode-map): Bind epa-decrypt-file,
277         epa-verify-file, epa-sign-file, and epa-encrypt-file.
278         (epa-decrypt-file): New function imported from epa-dired.el.
279         (epa-verify-file): New function imported from epa-dired.el.
280         (epa-sign-file): New function imported from epa-dired.el.
281         (epa-encrypt-file): New function imported from epa-dired.el.
282
283 2006-04-16  Daiki Ueno  <ueno@unixuser.org>
284
285         * epa.el (epa-select-keys): Renamed from epa-ask-keys; use
286         recursive-edit.
287         * epa-dired.el (epa-dired-encrypt-file): Use epa-select-keys.
288
289 2006-04-16  Daiki Ueno  <ueno@unixuser.org>
290
291         * epa-setup.el: New file.
292         * epa-dired.el: New file.
293
294         * epg.el (epg-colons-pub-spec): Abolished.
295         (epg-colons-sec-spec): Abolished.
296         (epg-colons-uid-spec): Abolished.
297         (epg-colons-fpr-spec): Abolished.
298         (epg-key-validity-alist): New variable.
299         (epg-key-capablity-alist): New variable.
300         (epg-make-key): New object epg-key.
301         (epg-make-sub-key): New object epg-sub-key.
302         (epg-make-user-id): New object epg-user-id.
303         (epg-list-keys-1): Renamed from epg-list-keys.
304         (epg-list-keys): Rewritten.
305
306 2006-04-15  Daiki Ueno  <ueno@unixuser.org>
307
308         * epg.el (epg-list-keys): Make the NAME argument optional.
309
310 2006-04-13  Daiki Ueno  <ueno@unixuser.org>
311
312         * epa.el: Added header.
313
314         * epg.el (epg-list-keys): Specify --with-fingerprint.
315         (epg-colons-fpr-spec): New variable.
316         (epg-colons-pub-spec): Renamed trust -> validity and ownertrust ->
317         owner-trust.
318         (epg-colons-sec-spec): Ditto.
319         (epg-colons-uid-spec): Renamed trust -> validity.
320
321 2006-04-13  Daiki Ueno  <ueno@unixuser.org>
322
323         * epa.el: New file.
324
325         * epg.el (epg-cipher-algorithm-alist): New constant.
326         (epg-pubkey-algorithm-alist): New constant.
327         (epg-digest-algorithm-alist): New constant.
328         (epg-compress-algorithm-alist): New constant.
329         (epg-configuration): New function.
330         (epg-start): Don't specify --yes.
331
332 2006-04-13  Daiki Ueno  <ueno@unixuser.org>
333
334         * epg.el (epg-make-data-from-file): New function.
335         (epg-make-data-from-string): New function.
336         (epg-data-file): New function.
337         (epg-data-string): New function.
338         (epg-start-decrypt): Get a cipher text from a data object.
339         (epg-delete-output-file): New function.
340         (epg-decrypt-file): Add the 3rd argument PLAIN to specify where
341         the output goes.
342         (epg-start-verify): Get a signature and signed-text from a data
343         object.
344         (epg-verify-file): Added the 3rd argument PLAIN to specify where
345         the output goes; return the plain text if PLAIN is nil.
346         (epg-verify-string): Return the plain text.
347         (epg-start-sign): Get a plain text from a data object.
348         (epg-sign-file): Added the 3rd argument SIGNATURE to specify where
349         the output goes.
350         (epg-start-encrypt): Get a plain text from a data object.
351         (epg-encrypt-file): Added the 4th argument CIPHER to specify where
352         the output goes.
353         (epg-start-import-keys): Get keys from a data object.
354         (epg-import-keys-1): New function.
355         (epg-import-keys-from-file): Use it.
356         (epg-import-keys-from-string): Use it.
357
358 2006-04-12  Daiki Ueno  <ueno@unixuser.org>
359
360         * epf.el: Renamed from epg-file.el.
361
362 2006-04-12  Daiki Ueno  <ueno@unixuser.org>
363
364         * epg.el (epg-status-GET_BOOL): New function.
365         (epg-status-GET_LINE): New function.
366         (epg-prompt-alist): New variable, to be filled.
367
368         * pgg-epg.el (mml2015-gpg-extract-signature-details): New function.
369         * epg.el (epg-signature-fingerprint): New function.
370         (epg-signature-set-fingerprint): New function.
371         (epg-status-VALIDSIG): New function.
372
373         * epg.el (epg-reset): Don't reset result.
374         (epg-start-decrypt): Reset result before epg-start.
375         (epg-start-verify): Ditto.
376         (epg-start-sign): Ditto.
377         (epg-start-encrypt): Ditto.
378         (epg-start-export-keys): Ditto.
379         (epg-start-import-keys): Ditto.
380
381         * Makefile.am (EXTRA_DIST): Added pgg-epg.el.
382         * pgg-epg.el: New file.
383
384         * epg.el (epg-start-export-keys): New function.
385         (epg-export-keys): New function.
386         (epg-start-import-keys): New function.
387         (epg-import-keys): New function.
388         (epg-verify-file): New function.
389
390         * epg-file.el (epg-file-write-region): Support public key encryption.
391
392         * epg.el (epg-passphrase-callback-function): Always display key-id.
393