Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / pgg.el
CommitLineData
23f87bed
MB
1;;; pgg.el --- glue for the various PGP implementations.
2
e84b4b86 3;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
409cc4a3 4;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
23f87bed
MB
5
6;; Author: Daiki Ueno <ueno@unixuser.org>
7c700bd1 7;; Symmetric encryption added by: Sascha Wilde <wilde@sha-bang.de>
23f87bed
MB
8;; Created: 1999/10/28
9;; Keywords: PGP
10
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
23f87bed 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
23f87bed
MB
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23f87bed
MB
25
26;;; Commentary:
27
28;;; Code:
29
30(require 'pgg-def)
31(require 'pgg-parse)
32(autoload 'run-at-time "timer")
33
34;; Don't merge these two `eval-when-compile's.
35(eval-when-compile
21ee0911 36 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))
23f87bed 37 (require 'cl))
23f87bed
MB
38
39;;; @ utility functions
40;;;
41
af5db4a5 42(eval-when-compile
bbbe940b
MB
43 ;; Define it as a null macro for Emacs in order to suppress a byte
44 ;; compile warning that Emacs 21 issues.
45 (defmacro pgg-run-at-time-1 (time repeat function args)
46 (when (featurep 'xemacs)
af5db4a5
GM
47 (if (condition-case nil
48 (let ((delete-itimer 'delete-itimer)
49 (itimer-driver-start 'itimer-driver-start)
50 (itimer-value 'itimer-value)
51 (start-itimer 'start-itimer))
52 (unless (or (symbol-value 'itimer-process)
53 (symbol-value 'itimer-timer))
54 (funcall itimer-driver-start))
55 ;; Check whether there is a bug to which the difference of
56 ;; the present time and the time when the itimer driver was
57 ;; woken up is subtracted from the initial itimer value.
58 (let* ((inhibit-quit t)
59 (ctime (current-time))
60 (itimer-timer-last-wakeup
61 (prog1
62 ctime
63 (setcar ctime (1- (car ctime)))))
64 (itimer-list nil)
65 (itimer (funcall start-itimer "pgg-run-at-time"
66 'ignore 5)))
67 (sleep-for 0.1) ;; Accept the timeout interrupt.
68 (prog1
69 (> (funcall itimer-value itimer) 0)
70 (funcall delete-itimer itimer))))
71 (error nil))
72 `(let ((time ,time))
73 (apply #'start-itimer "pgg-run-at-time"
74 ,function (if time (max time 1e-9) 1e-9)
75 ,repeat nil t ,args)))
76 `(let ((time ,time)
77 (itimers (list nil)))
78 (setcar
79 itimers
80 (apply #'start-itimer "pgg-run-at-time"
81 (lambda (itimers repeat function &rest args)
82 (let ((itimer (car itimers)))
83 (if repeat
84 (progn
85 (set-itimer-function
86 itimer
87 (lambda (itimer repeat function &rest args)
88 (set-itimer-restart itimer repeat)
89 (set-itimer-function itimer function)
90 (set-itimer-function-arguments itimer args)
91 (apply function args)))
92 (set-itimer-function-arguments
93 itimer
94 (append (list itimer repeat function) args)))
95 (set-itimer-function
96 itimer
97 (lambda (itimer function &rest args)
98 (delete-itimer itimer)
99 (apply function args)))
100 (set-itimer-function-arguments
101 itimer
102 (append (list itimer function) args)))))
103 1e-9 (if time (max time 1e-9) 1e-9)
bbbe940b 104 nil t itimers ,repeat ,function ,args))))))
af5db4a5 105
bbbe940b
MB
106(eval-and-compile
107 (if (featurep 'xemacs)
108 (progn
109 (defun pgg-run-at-time (time repeat function &rest args)
110 "Emulating function run as `run-at-time'.
af5db4a5
GM
111TIME should be nil meaning now, or a number of seconds from now.
112Return an itimer object which can be used in either `delete-itimer'
113or `cancel-timer'."
bbbe940b
MB
114 (pgg-run-at-time-1 time repeat function args))
115 (defun pgg-cancel-timer (timer)
116 "Emulate cancel-timer for xemacs."
117 (let ((delete-itimer 'delete-itimer))
118 (funcall delete-itimer timer))))
119 (defalias 'pgg-run-at-time 'run-at-time)
120 (defalias 'pgg-cancel-timer 'cancel-timer)))
af5db4a5 121
23f87bed
MB
122(defun pgg-invoke (func scheme &rest args)
123 (progn
124 (require (intern (format "pgg-%s" scheme)))
125 (apply 'funcall (intern (format "pgg-%s-%s" scheme func)) args)))
126
127(put 'pgg-save-coding-system 'lisp-indent-function 2)
128
129(defmacro pgg-save-coding-system (start end &rest body)
130 `(if (interactive-p)
131 (let ((buffer (current-buffer)))
132 (with-temp-buffer
133 (let (buffer-undo-list)
134 (insert-buffer-substring buffer ,start ,end)
135 (encode-coding-region (point-min)(point-max)
136 buffer-file-coding-system)
137 (prog1 (save-excursion ,@body)
138 (push nil buffer-undo-list)
139 (ignore-errors (undo))))))
140 (save-restriction
141 (narrow-to-region ,start ,end)
142 ,@body)))
143
144(defun pgg-temp-buffer-show-function (buffer)
145 (let ((window (or (get-buffer-window buffer 'visible)
146 (split-window-vertically))))
147 (set-window-buffer window buffer)
148 (shrink-window-if-larger-than-buffer window)))
149
7c700bd1
EZ
150;; XXX `pgg-display-output-buffer' is a horrible name for this function.
151;; It should be something like `pgg-situate-output-or-display-error'.
23f87bed 152(defun pgg-display-output-buffer (start end status)
7c700bd1
EZ
153 "Situate en/decryption results or pop up an error buffer.
154
155Text from START to END is replaced by contents of output buffer if STATUS
156is true, or else the output buffer is displayed."
23f87bed 157 (if status
7c700bd1
EZ
158 (pgg-situate-output start end)
159 (pgg-display-error-buffer)))
160
161(defun pgg-situate-output (start end)
162 "Place en/decryption result in place of current text from START to END."
163 (delete-region start end)
164 (insert-buffer-substring pgg-output-buffer)
165 (decode-coding-region start (point) buffer-file-coding-system))
166
167(defun pgg-display-error-buffer ()
168 "Pop up an error buffer indicating the reason for an en/decryption failure."
169 (let ((temp-buffer-show-function
170 (function pgg-temp-buffer-show-function)))
171 (with-output-to-temp-buffer pgg-echo-buffer
172 (set-buffer standard-output)
173 (insert-buffer-substring pgg-errors-buffer))))
23f87bed
MB
174
175(defvar pgg-passphrase-cache (make-vector 7 0))
176
7c700bd1
EZ
177(defvar pgg-pending-timers (make-vector 7 0)
178 "Hash table for managing scheduled pgg cache management timers.
179
180We associate key and timer, so the timer can be cancelled if a new
181timeout for the key is set while an old one is still pending.")
182
183(defun pgg-read-passphrase (prompt &optional key notruncate)
184 "Using PROMPT, obtain passphrase for KEY from cache or user.
185
186Truncate the key to 8 trailing characters unless NOTRUNCATE is true
187\(default false).
188
189Custom variables `pgg-cache-passphrase' and `pgg-passphrase-cache-expiry'
190regulate cache behavior."
191 (or (pgg-read-passphrase-from-cache key notruncate)
23f87bed
MB
192 (read-passwd prompt)))
193
7c700bd1
EZ
194(defun pgg-read-passphrase-from-cache (key &optional notruncate)
195 "Obtain passphrase for KEY from time-limited passphrase cache.
196
197Truncate the key to 8 trailing characters unless NOTRUNCATE is true
198\(default false).
199
200Custom variables `pgg-cache-passphrase' and `pgg-passphrase-cache-expiry'
201regulate cache behavior."
202 (and pgg-cache-passphrase
203 key (or notruncate
204 (setq key (pgg-truncate-key-identifier key)))
205 (symbol-value (intern-soft key pgg-passphrase-cache))))
206
207(defun pgg-add-passphrase-to-cache (key passphrase &optional notruncate)
208 "Associate KEY with PASSPHRASE in time-limited passphrase cache.
209
210Truncate the key to 8 trailing characters unless NOTRUNCATE is true
211\(default false).
212
213Custom variables `pgg-cache-passphrase' and `pgg-passphrase-cache-expiry'
214regulate cache behavior."
215
216 (let* ((key (if notruncate key (pgg-truncate-key-identifier key)))
217 (interned-timer-key (intern-soft key pgg-pending-timers))
218 (old-timer (symbol-value interned-timer-key))
219 new-timer)
220 (when old-timer
221 (cancel-timer old-timer)
222 (unintern interned-timer-key pgg-pending-timers))
223 (set (intern key pgg-passphrase-cache)
224 passphrase)
225 (set (intern key pgg-pending-timers)
226 (pgg-run-at-time pgg-passphrase-cache-expiry nil
227 #'pgg-remove-passphrase-from-cache
228 key notruncate))))
229
8fbdffe5
MB
230(if (fboundp 'clear-string)
231 (defalias 'pgg-clear-string 'clear-string)
232 (defun pgg-clear-string (string)
233 (fillarray string ?_)))
234
af5db4a5
GM
235(declare-function pgg-clear-string "pgg" (string))
236
7c700bd1
EZ
237(defun pgg-remove-passphrase-from-cache (key &optional notruncate)
238 "Omit passphrase associated with KEY in time-limited passphrase cache.
239
240Truncate the key to 8 trailing characters unless NOTRUNCATE is true
241\(default false).
242
243This is a no-op if there is not entry for KEY (eg, it's already expired.
244
245The memory for the passphrase is filled with underscores to clear any
246references to it.
247
248Custom variables `pgg-cache-passphrase' and `pgg-passphrase-cache-expiry'
249regulate cache behavior."
250 (let* ((passphrase (pgg-read-passphrase-from-cache key notruncate))
251 (key (if notruncate key (pgg-truncate-key-identifier key)))
252 (interned-timer-key (intern-soft key pgg-pending-timers))
253 (old-timer (symbol-value interned-timer-key)))
254 (when passphrase
8fbdffe5 255 (pgg-clear-string passphrase)
7c700bd1
EZ
256 (unintern key pgg-passphrase-cache))
257 (when old-timer
258 (pgg-cancel-timer old-timer)
259 (unintern interned-timer-key pgg-pending-timers))))
260
23f87bed
MB
261(defmacro pgg-convert-lbt-region (start end lbt)
262 `(let ((pgg-conversion-end (set-marker (make-marker) ,end)))
263 (goto-char ,start)
264 (case ,lbt
265 (CRLF
266 (while (progn
267 (end-of-line)
268 (> (marker-position pgg-conversion-end) (point)))
269 (insert "\r")
270 (forward-line 1)))
271 (LF
272 (while (re-search-forward "\r$" pgg-conversion-end t)
273 (replace-match ""))))))
274
275(put 'pgg-as-lbt 'lisp-indent-function 3)
276
277(defmacro pgg-as-lbt (start end lbt &rest body)
278 `(let ((inhibit-read-only t)
279 buffer-read-only
280 buffer-undo-list)
281 (pgg-convert-lbt-region ,start ,end ,lbt)
282 (let ((,end (point)))
283 ,@body)
284 (push nil buffer-undo-list)
285 (ignore-errors (undo))))
286
287(put 'pgg-process-when-success 'lisp-indent-function 0)
288
289(defmacro pgg-process-when-success (&rest body)
290 `(with-current-buffer pgg-output-buffer
291 (if (zerop (buffer-size)) nil ,@body t)))
292
293(defalias 'pgg-make-temp-file
294 (if (fboundp 'make-temp-file)
295 'make-temp-file
296 (lambda (prefix &optional dir-flag)
297 (let ((file (expand-file-name
298 (make-temp-name prefix)
299 (if (fboundp 'temp-directory)
300 (temp-directory)
301 temporary-file-directory))))
302 (if dir-flag
303 (make-directory file))
304 file))))
305
306;;; @ interface functions
307;;;
308
309;;;###autoload
7c700bd1 310(defun pgg-encrypt-region (start end rcpts &optional sign passphrase)
23f87bed 311 "Encrypt the current region between START and END for RCPTS.
7c700bd1
EZ
312
313If optional argument SIGN is non-nil, do a combined sign and encrypt.
314
315If optional PASSPHRASE is not specified, it will be obtained from the
316passphrase cache or user."
23f87bed
MB
317 (interactive
318 (list (region-beginning)(region-end)
319 (split-string (read-string "Recipients: ") "[ \t,]+")))
320 (let ((status
321 (pgg-save-coding-system start end
322 (pgg-invoke "encrypt-region" (or pgg-scheme pgg-default-scheme)
7c700bd1
EZ
323 (point-min) (point-max) rcpts sign passphrase))))
324 (when (interactive-p)
325 (pgg-display-output-buffer start end status))
326 status))
327
328;;;###autoload
329(defun pgg-encrypt-symmetric-region (start end &optional passphrase)
330 "Encrypt the current region between START and END symmetric with passphrase.
331
332If optional PASSPHRASE is not specified, it will be obtained from the
333cache or user."
334 (interactive "r")
335 (let ((status
336 (pgg-save-coding-system start end
1941dba2 337 (pgg-invoke "encrypt-symmetric-region"
7c700bd1
EZ
338 (or pgg-scheme pgg-default-scheme)
339 (point-min) (point-max) passphrase))))
23f87bed
MB
340 (when (interactive-p)
341 (pgg-display-output-buffer start end status))
342 status))
343
344;;;###autoload
7c700bd1
EZ
345(defun pgg-encrypt-symmetric (&optional start end passphrase)
346 "Encrypt the current buffer using a symmetric, rather than key-pair, cipher.
347
348If optional arguments START and END are specified, only encrypt within
349the region.
350
351If optional PASSPHRASE is not specified, it will be obtained from the
352passphrase cache or user."
353 (interactive)
354 (let* ((start (or start (point-min)))
355 (end (or end (point-max)))
356 (status (pgg-encrypt-symmetric-region start end passphrase)))
357 (when (interactive-p)
358 (pgg-display-output-buffer start end status))
359 status))
360
361;;;###autoload
362(defun pgg-encrypt (rcpts &optional sign start end passphrase)
23f87bed 363 "Encrypt the current buffer for RCPTS.
7c700bd1 364
23f87bed 365If optional argument SIGN is non-nil, do a combined sign and encrypt.
7c700bd1 366
23f87bed 367If optional arguments START and END are specified, only encrypt within
7c700bd1
EZ
368the region.
369
370If optional PASSPHRASE is not specified, it will be obtained from the
371passphrase cache or user."
23f87bed
MB
372 (interactive (list (split-string (read-string "Recipients: ") "[ \t,]+")))
373 (let* ((start (or start (point-min)))
374 (end (or end (point-max)))
7c700bd1 375 (status (pgg-encrypt-region start end rcpts sign passphrase)))
23f87bed
MB
376 (when (interactive-p)
377 (pgg-display-output-buffer start end status))
378 status))
379
380;;;###autoload
7c700bd1
EZ
381(defun pgg-decrypt-region (start end &optional passphrase)
382 "Decrypt the current region between START and END.
383
384If optional PASSPHRASE is not specified, it will be obtained from the
385passphrase cache or user."
23f87bed
MB
386 (interactive "r")
387 (let* ((buf (current-buffer))
388 (status
389 (pgg-save-coding-system start end
390 (pgg-invoke "decrypt-region" (or pgg-scheme pgg-default-scheme)
7c700bd1 391 (point-min) (point-max) passphrase))))
23f87bed
MB
392 (when (interactive-p)
393 (pgg-display-output-buffer start end status))
394 status))
395
396;;;###autoload
7c700bd1 397(defun pgg-decrypt (&optional start end passphrase)
23f87bed 398 "Decrypt the current buffer.
7c700bd1 399
23f87bed 400If optional arguments START and END are specified, only decrypt within
7c700bd1
EZ
401the region.
402
403If optional PASSPHRASE is not specified, it will be obtained from the
404passphrase cache or user."
23f87bed
MB
405 (interactive "")
406 (let* ((start (or start (point-min)))
407 (end (or end (point-max)))
7c700bd1 408 (status (pgg-decrypt-region start end passphrase)))
23f87bed
MB
409 (when (interactive-p)
410 (pgg-display-output-buffer start end status))
411 status))
412
413;;;###autoload
7c700bd1 414(defun pgg-sign-region (start end &optional cleartext passphrase)
23f87bed 415 "Make the signature from text between START and END.
7c700bd1 416
23f87bed
MB
417If the optional 3rd argument CLEARTEXT is non-nil, it does not create
418a detached signature.
7c700bd1 419
23f87bed 420If this function is called interactively, CLEARTEXT is enabled
1941dba2 421and the output is displayed.
7c700bd1
EZ
422
423If optional PASSPHRASE is not specified, it will be obtained from the
424passphrase cache or user."
23f87bed
MB
425 (interactive "r")
426 (let ((status (pgg-save-coding-system start end
427 (pgg-invoke "sign-region" (or pgg-scheme pgg-default-scheme)
428 (point-min) (point-max)
7c700bd1
EZ
429 (or (interactive-p) cleartext)
430 passphrase))))
23f87bed
MB
431 (when (interactive-p)
432 (pgg-display-output-buffer start end status))
433 status))
434
435;;;###autoload
7c700bd1 436(defun pgg-sign (&optional cleartext start end passphrase)
23f87bed 437 "Sign the current buffer.
7c700bd1 438
23f87bed
MB
439If the optional argument CLEARTEXT is non-nil, it does not create a
440detached signature.
7c700bd1 441
23f87bed
MB
442If optional arguments START and END are specified, only sign data
443within the region.
7c700bd1 444
23f87bed 445If this function is called interactively, CLEARTEXT is enabled
1941dba2 446and the output is displayed.
7c700bd1
EZ
447
448If optional PASSPHRASE is not specified, it will be obtained from the
449passphrase cache or user."
23f87bed
MB
450 (interactive "")
451 (let* ((start (or start (point-min)))
452 (end (or end (point-max)))
7c700bd1
EZ
453 (status (pgg-sign-region start end
454 (or (interactive-p) cleartext)
455 passphrase)))
23f87bed
MB
456 (when (interactive-p)
457 (pgg-display-output-buffer start end status))
458 status))
7c700bd1 459
23f87bed
MB
460;;;###autoload
461(defun pgg-verify-region (start end &optional signature fetch)
462 "Verify the current region between START and END.
463If the optional 3rd argument SIGNATURE is non-nil, it is treated as
464the detached signature of the current region.
465
466If the optional 4th argument FETCH is non-nil, we attempt to fetch the
467signer's public key from `pgg-default-keyserver-address'."
468 (interactive "r")
469 (let* ((packet
470 (if (null signature) nil
471 (with-temp-buffer
472 (buffer-disable-undo)
473 (if (fboundp 'set-buffer-multibyte)
474 (set-buffer-multibyte nil))
475 (insert-file-contents signature)
476 (cdr (assq 2 (pgg-decode-armor-region
477 (point-min)(point-max)))))))
478 (key (cdr (assq 'key-identifier packet)))
479 status keyserver)
480 (and (stringp key)
481 pgg-query-keyserver
482 (setq key (concat "0x" (pgg-truncate-key-identifier key)))
483 (null (pgg-lookup-key key))
484 (or fetch (interactive-p))
485 (y-or-n-p (format "Key %s not found; attempt to fetch? " key))
486 (setq keyserver
487 (or (cdr (assq 'preferred-key-server packet))
488 pgg-default-keyserver-address))
489 (pgg-fetch-key keyserver key))
1941dba2 490 (setq status
23f87bed
MB
491 (pgg-save-coding-system start end
492 (pgg-invoke "verify-region" (or pgg-scheme pgg-default-scheme)
493 (point-min) (point-max) signature)))
494 (when (interactive-p)
495 (let ((temp-buffer-show-function
496 (function pgg-temp-buffer-show-function)))
497 (with-output-to-temp-buffer pgg-echo-buffer
498 (set-buffer standard-output)
499 (insert-buffer-substring (if status pgg-output-buffer
500 pgg-errors-buffer)))))
501 status))
502
503;;;###autoload
504(defun pgg-verify (&optional signature fetch start end)
505 "Verify the current buffer.
506If the optional argument SIGNATURE is non-nil, it is treated as
507the detached signature of the current region.
508If the optional argument FETCH is non-nil, we attempt to fetch the
509signer's public key from `pgg-default-keyserver-address'.
510If optional arguments START and END are specified, only verify data
511within the region."
512 (interactive "")
513 (let* ((start (or start (point-min)))
514 (end (or end (point-max)))
515 (status (pgg-verify-region start end signature fetch)))
516 (when (interactive-p)
517 (let ((temp-buffer-show-function
518 (function pgg-temp-buffer-show-function)))
519 (with-output-to-temp-buffer pgg-echo-buffer
520 (set-buffer standard-output)
521 (insert-buffer-substring (if status pgg-output-buffer
84861437
MB
522 pgg-errors-buffer)))))
523 status))
23f87bed
MB
524
525;;;###autoload
526(defun pgg-insert-key ()
527 "Insert the ASCII armored public key."
528 (interactive)
529 (pgg-invoke "insert-key" (or pgg-scheme pgg-default-scheme)))
530
531;;;###autoload
532(defun pgg-snarf-keys-region (start end)
533 "Import public keys in the current region between START and END."
534 (interactive "r")
535 (pgg-save-coding-system start end
536 (pgg-invoke "snarf-keys-region" (or pgg-scheme pgg-default-scheme)
537 start end)))
538
539;;;###autoload
540(defun pgg-snarf-keys ()
541 "Import public keys in the current buffer."
542 (interactive "")
543 (pgg-snarf-keys-region (point-min) (point-max)))
544
545(defun pgg-lookup-key (string &optional type)
546 (pgg-invoke "lookup-key" (or pgg-scheme pgg-default-scheme) string type))
547
548(defvar pgg-insert-url-function (function pgg-insert-url-with-w3))
549
550(defun pgg-insert-url-with-w3 (url)
551 (ignore-errors
23f87bed
MB
552 (require 'url)
553 (let (buffer-file-name)
554 (url-insert-file-contents url))))
555
556(defvar pgg-insert-url-extra-arguments nil)
557(defvar pgg-insert-url-program nil)
558
559(defun pgg-insert-url-with-program (url)
560 (let ((args (copy-sequence pgg-insert-url-extra-arguments))
561 process)
562 (insert
563 (with-temp-buffer
564 (setq process
565 (apply #'start-process " *PGG url*" (current-buffer)
566 pgg-insert-url-program (nconc args (list url))))
567 (set-process-sentinel process #'ignore)
568 (while (eq 'run (process-status process))
569 (accept-process-output process 5))
570 (delete-process process)
571 (if (and process (eq 'run (process-status process)))
572 (interrupt-process process))
573 (buffer-string)))))
574
575(defun pgg-fetch-key (keyserver key)
576 "Attempt to fetch a KEY from KEYSERVER for addition to PGP or GnuPG keyring."
577 (with-current-buffer (get-buffer-create pgg-output-buffer)
578 (buffer-disable-undo)
579 (erase-buffer)
580 (let ((proto (if (string-match "^[a-zA-Z\\+\\.\\\\-]+:" keyserver)
581 (substring keyserver 0 (1- (match-end 0))))))
582 (save-excursion
583 (funcall pgg-insert-url-function
584 (if proto keyserver
585 (format "http://%s:11371/pks/lookup?op=get&search=%s"
586 keyserver key))))
587 (when (re-search-forward "^-+BEGIN" nil 'last)
588 (delete-region (point-min) (match-beginning 0))
589 (when (re-search-forward "^-+END" nil t)
590 (delete-region (progn (end-of-line) (point))
591 (point-max)))
592 (insert "\n")
593 (with-temp-buffer
594 (insert-buffer-substring pgg-output-buffer)
595 (pgg-snarf-keys-region (point-min)(point-max)))))))
596
597
598(provide 'pgg)
599
cbee283d 600;; arch-tag: 9cc705dd-1e6a-4c90-8dce-c3561f9a2cf4
23f87bed 601;;; pgg.el ends here