1 ;;; pgg-pgp.el --- PGP 2.* and 6.* support for PGG.
3 ;; Copyright (C) 1999,2000 Daiki Ueno
5 ;; Author: Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
7 ;; Keywords: PGP, OpenPGP
9 ;; This file is part of SEMI (Secure Emacs MIME Interface).
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ;; General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 (require 'mel) ; binary-to-text-funcall, binary-write-decoded-region
29 (eval-when-compile (require 'pgg))
32 "PGP 2.* and 6.* interface"
35 (defcustom pgg-pgp-program "pgp"
36 "PGP 2.* and 6.* executable."
40 (defcustom pgg-pgp-shell-file-name "/bin/sh"
41 "File name to load inferior shells from.
42 Bourne shell or its equivalent \(not tcsh) is needed for \"2>\"."
46 (defcustom pgg-pgp-shell-command-switch "-c"
47 "Switch used to have the shell execute its command line argument."
51 (defcustom pgg-pgp-extra-args nil
52 "Extra arguments for every PGP invocation."
57 (luna-define-class pgg-scheme-pgp (pgg-scheme)))
59 (defvar pgg-pgp-user-id nil
60 "PGP ID of your default identity.")
62 (defvar pgg-scheme-pgp-instance nil)
65 (defun pgg-make-scheme-pgp ()
66 (or pgg-scheme-pgp-instance
67 (setq pgg-scheme-pgp-instance
68 (luna-make-entity 'pgg-scheme-pgp))))
70 (defun pgg-pgp-process-region (start end passphrase program args)
71 (let* ((errors-file-name (make-temp-file "pgg-errors"))
75 (list (concat "2>" errors-file-name))))
76 (shell-file-name pgg-pgp-shell-file-name)
77 (shell-command-switch pgg-pgp-shell-command-switch)
78 (process-environment process-environment)
79 (output-buffer pgg-output-buffer)
80 (errors-buffer pgg-errors-buffer)
81 (process-connection-type nil)
82 process status exit-status)
83 (with-current-buffer (get-buffer-create output-buffer)
87 (setenv "PGPPASSFD" "0"))
91 (apply #'binary-funcall
92 #'start-process-shell-command "*PGP*" output-buffer
94 (set-process-sentinel process #'ignore)
96 (process-send-string process (concat passphrase "\n")))
97 (process-send-region process start end)
98 (process-send-eof process)
99 (while (eq 'run (process-status process))
100 (accept-process-output process 5))
101 (setq status (process-status process)
102 exit-status (process-exit-status process))
103 (delete-process process)
104 (with-current-buffer output-buffer
105 (pgg-convert-lbt-region (point-min)(point-max) 'LF)
107 (if (memq status '(stop signal))
108 (error "%s exited abnormally: '%s'" program exit-status))
109 (if (= 127 exit-status)
110 (error "%s could not be found" program))
112 (set-buffer (get-buffer-create errors-buffer))
113 (buffer-disable-undo)
115 (insert-file-contents errors-file-name)))
116 (if (and process (eq 'run (process-status process)))
117 (interrupt-process process))
119 (delete-file errors-file-name)
122 (luna-define-method pgg-scheme-lookup-key ((scheme pgg-scheme-pgp)
123 string &optional type)
124 (let ((args (list "+batchmode" "+language=en" "-kv" string)))
125 (with-current-buffer (get-buffer-create pgg-output-buffer)
126 (buffer-disable-undo)
128 (apply #'call-process pgg-pgp-program nil t nil args)
129 (goto-char (point-min))
131 ((re-search-forward "^pub\\s +[0-9]+/" nil t);PGP 2.*
132 (buffer-substring (point)(+ 8 (point))))
133 ((re-search-forward "^Type" nil t);PGP 6.*
134 (beginning-of-line 2)
137 (buffer-substring (point)(progn (end-of-line) (point)))))
140 (luna-define-method pgg-scheme-encrypt-region ((scheme pgg-scheme-pgp)
141 start end recipients)
142 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id))
144 `("+encrypttoself=off +verbose=1" "+batchmode"
145 "+language=us" "-fate"
147 (mapcar (lambda (rcpt) (concat "\"" rcpt "\""))
149 (if pgg-encrypt-for-me
150 (list pgg-pgp-user-id))))))))
151 (pgg-pgp-process-region start end nil pgg-pgp-program args)
152 (pgg-process-when-success nil)))
154 (luna-define-method pgg-scheme-decrypt-region ((scheme pgg-scheme-pgp)
156 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id))
159 (format "PGP passphrase for %s: " pgg-pgp-user-id)
160 (pgg-scheme-lookup-key scheme pgg-pgp-user-id 'encrypt)))
162 '("+verbose=1" "+batchmode" "+language=us" "-f")))
163 (pgg-pgp-process-region start end passphrase pgg-pgp-program args)
164 (pgg-process-when-success nil)))
166 (luna-define-method pgg-scheme-sign-region ((scheme pgg-scheme-pgp)
167 start end &optional clearsign)
168 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id))
171 (format "PGP passphrase for %s: " pgg-pgp-user-id)
172 (pgg-scheme-lookup-key scheme pgg-pgp-user-id 'sign)))
174 (list (if clearsign "-fast" "-fbast")
175 "+verbose=1" "+language=us" "+batchmode"
176 "-u" pgg-pgp-user-id)))
177 (pgg-pgp-process-region start end passphrase pgg-pgp-program args)
178 (pgg-process-when-success
179 (goto-char (point-min))
180 (when (re-search-forward "^-+BEGIN PGP" nil t);XXX
182 (cdr (assq 2 (pgg-parse-armor-region
183 (progn (beginning-of-line 2)
186 (if pgg-cache-passphrase
187 (pgg-add-passphrase-cache
188 (cdr (assq 'key-identifier packet))
191 (luna-define-method pgg-scheme-verify-region ((scheme pgg-scheme-pgp)
192 start end &optional signature)
193 (let ((orig-file (make-temp-file "pgg"))
194 (args '("+verbose=1" "+batchmode" "+language=us"))
195 (orig-mode (default-file-modes)))
198 (set-default-file-modes 448)
199 (binary-write-decoded-region start end orig-file))
200 (set-default-file-modes orig-mode))
201 (when (stringp signature)
202 (copy-file signature (setq signature (concat orig-file ".asc")))
203 (setq args (append args (list signature orig-file))))
204 (pgg-pgp-process-region (point)(point) nil pgg-pgp-program args)
205 (delete-file orig-file)
206 (if signature (delete-file signature))
207 (pgg-process-when-success
208 (goto-char (point-min))
209 (let ((case-fold-search t))
210 (while (re-search-forward "^warning: " nil t)
211 (delete-region (match-beginning 0)
212 (progn (beginning-of-line 2) (point)))))
213 (goto-char (point-min))
214 (when (re-search-forward "^\\.$" nil t)
215 (delete-region (point-min)
216 (progn (beginning-of-line 2)
219 (luna-define-method pgg-scheme-insert-key ((scheme pgg-scheme-pgp))
220 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id))
222 (list "+verbose=1" "+batchmode" "+language=us" "-kxaf"
223 (concat "\"" pgg-pgp-user-id "\""))))
224 (pgg-pgp-process-region (point)(point) nil pgg-pgp-program args)
225 (insert-buffer-substring pgg-output-buffer)))
227 (luna-define-method pgg-scheme-snarf-keys-region ((scheme pgg-scheme-pgp)
229 (let* ((pgg-pgp-user-id (or pgg-pgp-user-id pgg-default-user-id))
230 (key-file (make-temp-file "pgg"))
232 (list "+verbose=1" "+batchmode" "+language=us" "-kaf"
234 (let ((coding-system-for-write 'raw-text-dos))
235 (write-region start end key-file))
236 (pgg-pgp-process-region start end nil pgg-pgp-program args)
237 (delete-file key-file)
238 (pgg-process-when-success nil)))
242 ;;; pgg-pgp.el ends here