* epa-file.el: New implementation of epf.el.
[elisp/epg.git] / epa-file.el
1 ;;; epa-file.el --- the EasyPG Assistant hooks for transparent file encryption
2 ;; Copyright (C) 2006 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG
6
7 ;; This file is part of EasyPG.
8
9 ;; This program is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; This program is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
23
24 ;;; Code:
25
26 (require 'epa)
27
28 (defgroup 'epa-file
29   "The EasyPG Assistant hooks for transparent file encryption"
30   :group 'epa)
31
32 (defcustom epa-file-name-regexp "\\.gpg\\'"
33   "Regexp which matches filenames to be encrypted with GnuPG."
34   :type 'regexp
35   :group 'epa-file)
36   
37 (defvar epa-file nil)
38
39 (defun epa-find-file ()
40   (when (string-match epa-file-name-regexp (buffer-file-name))
41     (if (= (buffer-size) 0)
42         (progn
43           (set-auto-mode)
44           (hack-local-variables)
45           (auto-save-mode nil))
46       (goto-char (point-min))
47       (insert (epg-decrypt-file (epg-make-context)
48                                 (expand-file-name (buffer-file-name))
49                                 nil))
50       (delete-region (point) (point-max)))
51     (make-local-variable 'epa-file)
52     (setq epa-file (buffer-file-name))))
53
54 (defun epa-write-file ()
55   (when epa-file
56     (write-region
57      (epg-encrypt-string
58       (epg-make-context)
59       (buffer-string)
60       (mapcar (lambda (key)
61                 (epg-sub-key-id
62                  (car (epg-key-sub-key-list key))))
63               (epa-select-keys
64                  "Select recipents for encryption.
65 If no one is selected, symmetric encryption will be performed.  ")))
66      nil (expand-file-name (buffer-file-name)))
67     (set-buffer-modified-p nil)
68     t))
69
70 (provide 'epa-file)
71
72 ;;; epa-file.el ends here