1 ;;; pgg-pgp.el --- PGP 2.* and 6.* support for PGG.
3 ;; Copyright (C) 1999-2000, 2002-2015 Free Software Foundation, Inc.
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
7 ;; Keywords: PGP, OpenPGP
9 ;; Obsolete-since: 24.1
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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 " 2>" (shell-quote-argument 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
))
86 (start-process-shell-command "*PGP*" output-buffer
87 (concat program
" " args
))))
88 (set-process-sentinel process
#'ignore
)
90 (process-send-string process
(concat passphrase
"\n")))
91 (process-send-region process start end
)
92 (process-send-eof process
)
93 (while (eq 'run
(process-status process
))
94 (accept-process-output process
5))
95 (setq status
(process-status process
)
96 exit-status
(process-exit-status process
))
97 (delete-process process
)
98 (with-current-buffer output-buffer
99 (pgg-convert-lbt-region (point-min)(point-max) 'LF
)
101 (if (memq status
'(stop signal
))
102 (error "%s exited abnormally: '%s'" program exit-status
))
103 (if (= 127 exit-status
)
104 (error "%s could not be found" program
))
106 (set-buffer (get-buffer-create errors-buffer
))
107 (buffer-disable-undo)
109 (insert-file-contents errors-file-name
)))
110 (if (and process
(eq 'run
(process-status process
)))
111 (interrupt-process process
))
113 (delete-file errors-file-name
)
116 (defun pgg-pgp-lookup-key (string &optional type
)
117 "Search keys associated with STRING."
118 (let ((args (list "+batchmode" "+language=en" "-kv" string
)))
119 (with-current-buffer (get-buffer-create pgg-output-buffer
)
120 (buffer-disable-undo)
122 (apply #'call-process pgg-pgp-program nil t nil args
)
123 (goto-char (point-min))
125 ((re-search-forward "^pub\\s +[0-9]+/" nil t
);PGP 2.*
126 (buffer-substring (point)(+ 8 (point))))
127 ((re-search-forward "^Type" nil t
);PGP 6.*
128 (beginning-of-line 2)
131 (buffer-substring (point)(progn (end-of-line) (point)))))
134 (defun pgg-pgp-encrypt-region (start end recipients
&optional sign passphrase
)
135 "Encrypt the current region between START and END."
136 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
137 (passphrase (or passphrase
140 (format "PGP passphrase for %s: "
145 "+encrypttoself=off +verbose=1 +batchmode +language=us -fate "
146 (if (or recipients pgg-encrypt-for-me
)
147 (mapconcat 'shell-quote-argument
149 (if pgg-encrypt-for-me
150 (list pgg-pgp-user-id
))) " "))
151 (if sign
(concat " -s -u " (shell-quote-argument pgg-pgp-user-id
))))))
152 (pgg-pgp-process-region start end nil pgg-pgp-program args
)
153 (pgg-process-when-success nil
)))
155 (defun pgg-pgp-decrypt-region (start end
&optional passphrase
)
156 "Decrypt the current region between START and END.
158 If optional PASSPHRASE is not specified, it will be obtained from the
159 passphrase cache or user."
160 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
161 (key (pgg-pgp-lookup-key pgg-pgp-user-id
'encrypt
))
165 (format "PGP passphrase for %s: " pgg-pgp-user-id
) key
)))
167 "+verbose=1 +batchmode +language=us -f"))
168 (pgg-pgp-process-region start end passphrase pgg-pgp-program args
)
169 (pgg-process-when-success
170 (if pgg-cache-passphrase
171 (pgg-add-passphrase-to-cache key passphrase
)))))
173 (defun pgg-pgp-sign-region (start end
&optional clearsign passphrase
)
174 "Make detached signature from text between START and END.
176 If optional PASSPHRASE is not specified, it will be obtained from the
177 passphrase cache or user."
178 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
182 (format "PGP passphrase for %s: " pgg-pgp-user-id
)
183 (pgg-pgp-lookup-key pgg-pgp-user-id
'sign
))))
185 (concat (if clearsign
"-fast" "-fbast")
186 " +verbose=1 +language=us +batchmode"
187 " -u " (shell-quote-argument pgg-pgp-user-id
))))
188 (pgg-pgp-process-region start end passphrase pgg-pgp-program args
)
189 (pgg-process-when-success
190 (goto-char (point-min))
191 (when (re-search-forward "^-+BEGIN PGP" nil t
);XXX
193 (cdr (assq 2 (pgg-parse-armor-region
194 (progn (beginning-of-line 2)
197 (if pgg-cache-passphrase
198 (pgg-add-passphrase-to-cache
199 (cdr (assq 'key-identifier packet
))
202 (defun pgg-pgp-verify-region (start end
&optional signature
)
203 "Verify region between START and END as the detached signature SIGNATURE."
204 (let* ((orig-file (pgg-make-temp-file "pgg"))
205 (args "+verbose=1 +batchmode +language=us"))
207 (let ((coding-system-for-write 'binary
)
208 jka-compr-compression-info-list jam-zcat-filename-list
)
209 (write-region start end orig-file
)))
210 (if (stringp signature
)
212 (copy-file signature
(setq signature
(concat orig-file
".asc")))
213 (setq args
(concat args
" " (shell-quote-argument signature
)))))
214 (setq args
(concat args
" " (shell-quote-argument orig-file
)))
215 (pgg-pgp-process-region (point)(point) nil pgg-pgp-program args
)
216 (delete-file orig-file
)
217 (if signature
(delete-file signature
))
218 (pgg-process-when-success
219 (goto-char (point-min))
220 (let ((case-fold-search t
))
221 (while (re-search-forward "^warning: " nil t
)
222 (delete-region (match-beginning 0)
223 (progn (beginning-of-line 2) (point)))))
224 (goto-char (point-min))
225 (when (re-search-forward "^\\.$" nil t
)
226 (delete-region (point-min)
227 (progn (beginning-of-line 2)
230 (defun pgg-pgp-insert-key ()
231 "Insert public key at point."
232 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
234 (concat "+verbose=1 +batchmode +language=us -kxaf "
235 (shell-quote-argument pgg-pgp-user-id
))))
236 (pgg-pgp-process-region (point)(point) nil pgg-pgp-program args
)
237 (insert-buffer-substring pgg-output-buffer
)))
239 (defun pgg-pgp-snarf-keys-region (start end
)
240 "Add all public keys in region between START and END to the keyring."
241 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id
))
242 (key-file (pgg-make-temp-file "pgg"))
244 (concat "+verbose=1 +batchmode +language=us -kaf "
245 (shell-quote-argument key-file
))))
246 (let ((coding-system-for-write 'raw-text-dos
))
247 (write-region start end key-file
))
248 (pgg-pgp-process-region start end nil pgg-pgp-program args
)
249 (delete-file key-file
)
250 (pgg-process-when-success nil
)))
254 ;;; pgg-pgp.el ends here