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