1 ;;; pgg-pgp.el --- PGP 2.* and 6.* support for PGG.
3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
4 ;; 2005 Free Software Foundation, Inc.
6 ;; Author: Daiki Ueno <ueno@unixuser.org>
8 ;; Keywords: PGP, OpenPGP
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
30 (require 'cl
) ; for pgg macros
34 "PGP 2.* and 6.* interface."
37 (defcustom pgg-pgp-program
"pgp"
38 "PGP 2.* and 6.* executable."
42 (defcustom pgg-pgp-shell-file-name
"/bin/sh"
43 "File name to load inferior shells from.
44 Bourne shell or its equivalent \(not tcsh) is needed for \"2>\"."
48 (defcustom pgg-pgp-shell-command-switch
"-c"
49 "Switch used to have the shell execute its command line argument."
53 (defcustom pgg-pgp-extra-args nil
54 "Extra arguments for every PGP invocation."
57 (const :tag
"None" nil
)
58 (string :tag
"Arguments")))
60 (defvar pgg-pgp-user-id nil
61 "PGP ID of your default identity.")
63 (defun pgg-pgp-process-region (start end passphrase program args
)
64 (let* ((errors-file-name (pgg-make-temp-file "pgg-errors"))
68 (list (concat "2>" errors-file-name
))))
69 (shell-file-name pgg-pgp-shell-file-name
)
70 (shell-command-switch pgg-pgp-shell-command-switch
)
71 (process-environment process-environment
)
72 (output-buffer pgg-output-buffer
)
73 (errors-buffer pgg-errors-buffer
)
74 (process-connection-type nil
)
75 process status exit-status
)
76 (with-current-buffer (get-buffer-create output-buffer
)
80 (setenv "PGPPASSFD" "0"))
83 (let ((coding-system-for-read 'binary
)
84 (coding-system-for-write 'binary
))
87 #'start-process-shell-command
"*PGP*" output-buffer
89 (set-process-sentinel process
#'ignore
)
91 (process-send-string process
(concat passphrase
"\n")))
92 (process-send-region process start end
)
93 (process-send-eof process
)
94 (while (eq 'run
(process-status process
))
95 (accept-process-output process
5))
96 (setq status
(process-status process
)
97 exit-status
(process-exit-status process
))
98 (delete-process process
)
99 (with-current-buffer output-buffer
100 (pgg-convert-lbt-region (point-min)(point-max) 'LF
)
102 (if (memq status
'(stop signal
))
103 (error "%s exited abnormally: '%s'" program exit-status
))
104 (if (= 127 exit-status
)
105 (error "%s could not be found" program
))
107 (set-buffer (get-buffer-create errors-buffer
))
108 (buffer-disable-undo)
110 (insert-file-contents errors-file-name
)))
111 (if (and process
(eq 'run
(process-status process
)))
112 (interrupt-process process
))
114 (delete-file errors-file-name
)
117 (defun pgg-pgp-lookup-key (string &optional type
)
118 "Search keys associated with STRING."
119 (let ((args (list "+batchmode" "+language=en" "-kv" string
)))
120 (with-current-buffer (get-buffer-create pgg-output-buffer
)
121 (buffer-disable-undo)
123 (apply #'call-process pgg-pgp-program nil t nil args
)
124 (goto-char (point-min))
126 ((re-search-forward "^pub\\s +[0-9]+/" nil t
);PGP 2.*
127 (buffer-substring (point)(+ 8 (point))))
128 ((re-search-forward "^Type" nil t
);PGP 6.*
129 (beginning-of-line 2)
132 (buffer-substring (point)(progn (end-of-line) (point)))))
135 (defun pgg-pgp-encrypt-region (start end recipients
&optional sign passphrase
)
136 "Encrypt the current region between START and END."
137 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
138 (passphrase (or passphrase
141 (format "PGP passphrase for %s: "
146 `("+encrypttoself=off +verbose=1" "+batchmode"
147 "+language=us" "-fate"
149 (mapcar (lambda (rcpt) (concat "\"" rcpt
"\""))
151 (if pgg-encrypt-for-me
152 (list pgg-pgp-user-id
))))))
153 (if sign
'("-s" "-u" pgg-pgp-user-id
)))))
154 (pgg-pgp-process-region start end nil pgg-pgp-program args
)
155 (pgg-process-when-success nil
)))
157 (defun pgg-pgp-decrypt-region (start end
&optional passphrase
)
158 "Decrypt the current region between START and END.
160 If optional PASSPHRASE is not specified, it will be obtained from the
161 passphrase cache or user."
162 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
163 (key (pgg-pgp-lookup-key pgg-pgp-user-id
'encrypt
))
167 (format "PGP passphrase for %s: " pgg-pgp-user-id
) key
)))
169 '("+verbose=1" "+batchmode" "+language=us" "-f")))
170 (pgg-pgp-process-region start end passphrase pgg-pgp-program args
)
171 (pgg-process-when-success
172 (if pgg-cache-passphrase
173 (pgg-add-passphrase-to-cache key passphrase
)))))
175 (defun pgg-pgp-sign-region (start end
&optional clearsign passphrase
)
176 "Make detached signature from text between START and END.
178 If optional PASSPHRASE is not specified, it will be obtained from the
179 passphrase cache or user."
180 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
184 (format "PGP passphrase for %s: " pgg-pgp-user-id
)
185 (pgg-pgp-lookup-key pgg-pgp-user-id
'sign
))))
187 (list (if clearsign
"-fast" "-fbast")
188 "+verbose=1" "+language=us" "+batchmode"
189 "-u" pgg-pgp-user-id
)))
190 (pgg-pgp-process-region start end passphrase pgg-pgp-program args
)
191 (pgg-process-when-success
192 (goto-char (point-min))
193 (when (re-search-forward "^-+BEGIN PGP" nil t
);XXX
195 (cdr (assq 2 (pgg-parse-armor-region
196 (progn (beginning-of-line 2)
199 (if pgg-cache-passphrase
200 (pgg-add-passphrase-to-cache
201 (cdr (assq 'key-identifier packet
))
204 (defun pgg-pgp-verify-region (start end
&optional signature
)
205 "Verify region between START and END as the detached signature SIGNATURE."
206 (let* ((orig-file (pgg-make-temp-file "pgg"))
207 (args '("+verbose=1" "+batchmode" "+language=us"))
208 (orig-mode (default-file-modes)))
211 (set-default-file-modes 448)
212 (let ((coding-system-for-write 'binary
)
213 jka-compr-compression-info-list jam-zcat-filename-list
)
214 (write-region start end orig-file
)))
215 (set-default-file-modes orig-mode
))
216 (if (stringp signature
)
218 (copy-file signature
(setq signature
(concat orig-file
".asc")))
219 (setq args
(append args
(list signature orig-file
))))
220 (setq args
(append args
(list orig-file
))))
221 (pgg-pgp-process-region (point)(point) nil pgg-pgp-program args
)
222 (delete-file orig-file
)
223 (if signature
(delete-file signature
))
224 (pgg-process-when-success
225 (goto-char (point-min))
226 (let ((case-fold-search t
))
227 (while (re-search-forward "^warning: " nil t
)
228 (delete-region (match-beginning 0)
229 (progn (beginning-of-line 2) (point)))))
230 (goto-char (point-min))
231 (when (re-search-forward "^\\.$" nil t
)
232 (delete-region (point-min)
233 (progn (beginning-of-line 2)
236 (defun pgg-pgp-insert-key ()
237 "Insert public key at point."
238 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
240 (list "+verbose=1" "+batchmode" "+language=us" "-kxaf"
241 (concat "\"" pgg-pgp-user-id
"\""))))
242 (pgg-pgp-process-region (point)(point) nil pgg-pgp-program args
)
243 (insert-buffer-substring pgg-output-buffer
)))
245 (defun pgg-pgp-snarf-keys-region (start end
)
246 "Add all public keys in region between START and END to the keyring."
247 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
248 (key-file (pgg-make-temp-file "pgg"))
250 (list "+verbose=1" "+batchmode" "+language=us" "-kaf"
252 (let ((coding-system-for-write 'raw-text-dos
))
253 (write-region start end key-file
))
254 (pgg-pgp-process-region start end nil pgg-pgp-program args
)
255 (delete-file key-file
)
256 (pgg-process-when-success nil
)))
260 ;;; arch-tag: 076b7801-37b2-49a6-97c3-218fdecde33c
261 ;;; pgg-pgp.el ends here