Update.
[elisp/epg.git] / README
1 * What's this?
2
3 EasyPG is yet another GnuPG interface for Emacs.  It consists of two parts:
4
5 - "The EasyPG Assistant"
6   A GUI frontend of GnuPG
7 - "The EasyPG Library"
8   A library to interact with GnuPG
9
10 NOTE: EasyPG is neither a fork nor a re-implementation of PGG.
11
12 * Requirements
13
14 ** GNU Emacs 21.4 or XEmacs 21.4
15
16 ** GnuPG 1.4.3
17
18 * Quick start
19
20 ** Installation
21
22   $ ./configure
23   $ sudo make install
24
25 Add the following line to your ~/.emacs
26
27   (require 'epa-setup)
28
29 Then you can browse your keyring by `M-x epa-list-keys'.  In addition,
30 you can do some cryptographic operations on dired.
31
32   M-x dired
33   (mark some files)
34   : e (or M-x epa-dired-do-encrypt)
35   (select recipients and click [OK])
36
37 * Security
38
39 There are security pitfalls around Emacs.
40
41 ** Passphrase may leak to a temporary file.
42
43 The function call-process-region writes data in region to a temporary
44 file. If your PGP library used this function, your passphrases would
45 leak to the filesystem.
46
47 The EasyPG Library does not use call-process-region to communicate
48 with a gpg subprocess.
49
50 ** Passphrase may be stolen from a core file.
51
52 If Emacs crashes and dumps core, Lisp strings in memory are also
53 dumped within the core file. read-passwd function clears passphrase
54 strings by (fillarray string 0) to avoid this risk. However, Emacs
55 performs compaction in gc_sweep phase. If GC happens before fillarray,
56 passphrase strings may be moved elsewhere in memory. Therefore,
57 passphrase caching in elisp is generally a bad idea.
58
59 The EasyPG Library dares to disable passphrase caching. Fortunately,
60 there is more secure way to cache passphrases - use gpg-agent.