(The problem of spam): Fix, reported by Cheng Gao
[gnus] / texi / pgg.texi
1 \input texinfo                  @c -*-texinfo-*-
2
3 @setfilename pgg
4
5 @set VERSION 0.1
6
7 @direntry
8 * PGG: (pgg).   Emacs interface to various PGP implementations.
9 @end direntry
10
11 @settitle PGG @value{VERSION}
12
13 @ifinfo
14 This file describes the PGG.
15
16 Copyright (C) 2003, 2004 Free Software Foundation, Inc.
17 Copyright (C) 2001 Daiki Ueno.
18
19 Permission is granted to copy, distribute and/or modify this document
20 under the terms of the GNU Free Documentation License, Version 1.1 or
21 any later version published by the Free Software Foundation; with no
22 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
23 Texts.  A copy of the license is included in the section entitled "GNU
24 Free Documentation License".
25 @end ifinfo
26
27 @tex
28
29 @titlepage
30 @title PGG
31
32 @author by Daiki Ueno
33 @page
34
35 @vskip 0pt plus 1filll
36 Copyright @copyright{} 2001 Daiki Ueno.
37
38 Permission is granted to copy, distribute and/or modify this document
39 under the terms of the GNU Free Documentation License, Version 1.1 or
40 any later version published by the Free Software Foundation; with no
41 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
42 Texts.  A copy of the license is included in the section entitled "GNU
43 Free Documentation License".
44 @end titlepage
45 @page
46
47 @end tex
48
49 @node Top
50 @top PGG
51 This manual describes PGG.  PGG is an interface library between Emacs
52 and various tools for secure communication.  PGG also provides a simple
53 user interface to encrypt, decrypt, sign, and verify MIME messages.
54
55 @menu
56 * Overview::                    What PGG is.
57 * Prerequisites::               Complicated stuff you may have to do.
58 * How to use::                  Getting started quickly.
59 * Architecture::                
60 * Parsing OpenPGP packets::     
61 * Function Index::              
62 * Variable Index::              
63 @end menu
64
65 @node Overview
66 @chapter Overview
67
68 PGG is an interface library between Emacs and various tools for secure
69 communication.  Even though Mailcrypt has similar feature, it does not
70 deal with detached PGP messages, normally used in PGP/MIME
71 infrastructure.  This was the main reason why I wrote the new library.
72
73 PGP/MIME is an application of MIME Object Security Services (RFC1848).
74 The standard is documented in RFC2015.
75
76 @node Prerequisites
77 @chapter Prerequisites
78
79 PGG requires at least one implementation of privacy guard system.
80 This document assumes that you have already obtained and installed them
81 and that you are familiar with its basic functions.
82
83 By default, PGG uses GnuPG, but Pretty Good Privacy version 2 or version
84 5 are also supported.  If you are new to such a system, I recommend that
85 you should look over the GNU Privacy Handbook (GPH) which is available
86 at @uref{http://www.gnupg.org/gph/}.
87
88 @node How to use
89 @chapter How to use
90
91 The toplevel interface of this library is quite simple, and only
92 intended to use with public-key cryptographic operation.
93
94 To use PGG, evaluate following expression at the beginning of your
95 application program.
96
97 @lisp
98 (require 'pgg)
99 @end lisp
100
101 If you want to check existence of pgg.el at runtime, instead you can
102 list autoload setting for desired functions as follows.
103
104 @lisp
105 (autoload 'pgg-encrypt-region "pgg"
106   "Encrypt the current region." t)
107 (autoload 'pgg-decrypt-region "pgg"
108   "Decrypt the current region." t)
109 (autoload 'pgg-sign-region "pgg"
110   "Sign the current region." t)
111 (autoload 'pgg-verify-region "pgg"
112   "Verify the current region." t)
113 (autoload 'pgg-insert-key "pgg"
114   "Insert the ASCII armored public key." t)
115 (autoload 'pgg-snarf-keys-region "pgg"
116   "Import public keys in the current region." t)
117 @end lisp
118
119 @menu
120 * User Commands::               
121 * Selecting an implementation::  
122 * Caching passphrase::          
123 * Default user identity::       
124 @end menu
125
126 @node User Commands
127 @section User Commands
128
129 At this time you can use some cryptographic commands.  The behavior of
130 these commands relies on a fashion of invocation because they are also
131 intended to be used as library functions.  In case you don't have the
132 signer's public key, for example, the function @code{pgg-verify-region}
133 fails immediately, but if the function had been called interactively, it
134 would ask you to retrieve the signer's public key from the server.
135
136 @deffn Command pgg-encrypt-region start end recipients &optional sign
137 Encrypt the current region between @var{start} and @var{end} for
138 @var{recipients}.  When the function were called interactively, you
139 would be asked about the recipients.
140
141 If encryption is successful, it replaces the current region contents (in
142 the accessible portion) with the resulting data.
143
144 If optional argument @var{sign} is non-nil, the function is request to
145 do a combined sign and encrypt.  This currently only work with GnuPG.
146 @end deffn
147
148 @deffn Command pgg-decrypt-region start end
149 Decrypt the current region between @var{start} and @var{end}.  If
150 decryption is successful, it replaces the current region contents (in
151 the accessible portion) with the resulting data.
152 @end deffn
153
154 @deffn Command pgg-sign-region start end &optional cleartext
155 Make the signature from text between @var{start} and @var{end}.  If the
156 optional third argument @var{cleartext} is non-@code{nil}, or the
157 function is called interactively, it does not create a detached
158 signature.  In such a case, it replaces the current region contents (in
159 the accessible portion) with the resulting data.
160 @end deffn
161
162 @deffn Command pgg-verify-region start end &optional signature fetch
163 Verify the current region between @var{start} and @var{end}.  If the
164 optional third argument @var{signature} is non-@code{nil}, or the function
165 is called interactively, it is treated as the detached signature of the
166 current region.
167
168 If the optional 4th argument @var{fetch} is non-@code{nil}, or the
169 function is called interactively, we attempt to fetch the signer's
170 public key from the key server.
171 @end deffn
172
173 @deffn Command pgg-insert-key
174 Retrieve the user's public key and insert it as ASCII-armored format.
175 @end deffn
176
177 @deffn Command pgg-snarf-keys-region start end
178 Collect public keys in the current region between @var{start} and
179 @var{end}, and add them into the user's keyring.
180 @end deffn
181
182 @node Selecting an implementation
183 @section Selecting an implementation
184
185 Since PGP has a long history and there are a number of PGP
186 implementations available today, the function which each one has differs
187 considerably.  For example, if you are using GnuPG, you know you can
188 select cipher algorithm from 3DES, CAST5, BLOWFISH, and so on, but on
189 the other hand the version 2 of PGP only supports IDEA.
190
191 By default, if the variable @code{pgg-scheme} is not set, PGG searches the
192 registered scheme for an implementation of the requested service
193 associated with the named algorithm.  If there are no match, PGG uses
194 @code{pgg-default-scheme}.  In other words, there are two options to
195 control which command is used to process the incoming PGP armors.  One
196 is for encrypting and signing, the other is for decrypting and
197 verifying.
198
199 @defvar pgg-scheme
200 Force specify the scheme of PGP implementation for decrypting and verifying.
201 The value can be @code{gpg}, @code{pgp}, and @code{pgp5}.
202 @end defvar
203
204 @defvar pgg-default-scheme
205 Force specify the scheme of PGP implementation for encrypting and signing.
206 The value can be @code{gpg}, @code{pgp}, and @code{pgp5}.
207 @end defvar
208
209 @node Caching passphrase
210 @section Caching passphrase
211
212 PGG uses a simple passphrase caching mechanism, which is enabled by
213 default.
214
215 @defvar pgg-cache-passphrase
216 If non-@code{nil}, store passphrases.  The default value of this
217 variable is @code{t}.  If you were worry about security issue, however,
218 you could stop caching with setting it @code{nil}.
219 @end defvar
220
221 @defvar pgg-passphrase-cache-expiry
222 Elapsed time for expiration in seconds.
223 @end defvar
224
225 @node Default user identity
226 @section Default user identity
227
228 The PGP implementation is usually able to select the proper key to use
229 for signing and decryption, but if you have more than one key, you may
230 need to specify the key id to use.
231
232 @defvar pgg-default-user-id
233 User ID of your default identity.  It defaults to the value returned
234 by @samp{(user-login-name)}.  You can customize this variable.
235 @end defvar
236
237 @defvar pgg-gpg-user-id
238 User ID of the GnuPG default identity.  It defaults to @samp{nil}.
239 This overrides @samp{pgg-default-user-id}.  You can customize this
240 variable.
241 @end defvar
242
243 @defvar pgg-pgp-user-id
244 User ID of the PGP 2.x/6.x default identity.  It defaults to
245 @samp{nil}.  This overrides @samp{pgg-default-user-id}.  You can
246 customize this variable.
247 @end defvar
248
249 @defvar pgg-pgp5-user-id
250 User ID of the PGP 5.x default identity.  It defaults to @samp{nil}.
251 This overrides @samp{pgg-default-user-id}.  You can customize this
252 variable.
253 @end defvar
254
255 @node Architecture
256 @chapter Architecture
257
258 PGG introduces the notion of a "scheme of PGP implementation" (used
259 interchangeably with "scheme" in this document).  This term refers to a
260 singleton object wrapped with the luna object system.
261
262 Since PGG was designed for accessing and developing PGP functionality,
263 the architecture had to be designed not just for interoperability but
264 also for extensiblity.  In this chapter we explore the architecture
265 while finding out how to write the PGG backend.
266
267 @menu
268 * Initializing::                
269 * Backend methods::             
270 * Getting output::              
271 @end menu
272
273 @node Initializing
274 @section Initializing
275
276 A scheme must be initialized before it is used.
277 It had better guarantee to keep only one instance of a scheme.
278
279 The following code is snipped out of @file{pgg-gpg.el}.  Once an
280 instance of @code{pgg-gpg} scheme is initialized, it's stored to the
281 variable @code{pgg-scheme-gpg-instance} and will be reused from now on.
282
283 @lisp
284 (defvar pgg-scheme-gpg-instance nil)
285
286 (defun pgg-make-scheme-gpg ()
287   (or pgg-scheme-gpg-instance
288       (setq pgg-scheme-gpg-instance
289             (luna-make-entity 'pgg-scheme-gpg))))
290 @end lisp
291
292 The name of the function must follow the
293 regulation---@code{pgg-make-scheme-} follows the backend name.
294
295 @node Backend methods
296 @section Backend methods
297
298 In each backend, these methods must be present.  The output of these
299 methods is stored in special buffers (@ref{Getting output}), so that
300 these methods must tell the status of the execution.
301
302 @deffn Method pgg-scheme-lookup-key scheme string &optional type
303 Return keys associated with @var{string}.  If the optional third
304 argument @var{type} is non-@code{nil}, it searches from the secret
305 keyrings.
306 @end deffn
307
308 @deffn Method pgg-scheme-encrypt-region scheme start end recipients &optional sign
309 Encrypt the current region between @var{start} and @var{end} for
310 @var{recipients}.  If @var{sign} is non-nil, do a combined sign and
311 encrypt.  If encryption is successful, it returns @code{t}, otherwise
312 @code{nil}.
313 @end deffn
314
315 @deffn Method pgg-scheme-decrypt-region scheme start end
316 Decrypt the current region between @var{start} and @var{end}.  If
317 decryption is successful, it returns @code{t}, otherwise @code{nil}.
318 @end deffn
319
320 @deffn Method pgg-scheme-sign-region scheme start end &optional cleartext
321 Make the signature from text between @var{start} and @var{end}.  If the
322 optional third argument @var{cleartext} is non-@code{nil}, it does not
323 create a detached signature.  If signing is successful, it returns
324 @code{t}, otherwise @code{nil}.
325 @end deffn
326
327 @deffn Method pgg-scheme-verify-region scheme start end &optional signature
328 Verify the current region between @var{start} and @var{end}.  If the
329 optional third argument @var{signature} is non-@code{nil}, it is treated
330 as the detached signature of the current region.  If the signature is
331 successfully verified, it returns @code{t}, otherwise @code{nil}.
332 @end deffn
333
334 @deffn Method pgg-scheme-insert-key scheme
335 Retrieve the user's public key and insert it as ASCII-armored format.
336 On success, it returns @code{t}, otherwise @code{nil}.
337 @end deffn
338
339 @deffn Method pgg-scheme-snarf-keys-region scheme start end
340 Collect public keys in the current region between @var{start} and
341 @var{end}, and add them into the user's keyring.
342 On success, it returns @code{t}, otherwise @code{nil}.
343 @end deffn
344
345 @node Getting output
346 @section Getting output
347
348 The output of the backend methods (@ref{Backend methods}) is stored in
349 special buffers, so that these methods must tell the status of the
350 execution.
351
352 @defvar pgg-errors-buffer
353 The standard error output of the execution of the PGP command is stored
354 here.
355 @end defvar
356
357 @defvar pgg-output-buffer
358 The standard output of the execution of the PGP command is stored here.
359 @end defvar
360
361 @defvar pgg-status-buffer
362 The rest of status information of the execution of the PGP command is
363 stored here.
364 @end defvar
365
366 @node Parsing OpenPGP packets
367 @chapter Parsing OpenPGP packets
368
369 The format of OpenPGP messages is maintained in order to publish all
370 necessary information needed to develop interoperable applications.
371 The standard is documented in RFC 2440.
372
373 PGG has its own parser for the OpenPGP packets.
374
375 @defun pgg-parse-armor string
376 List the sequence of packets in @var{string}.
377 @end defun
378
379 @defun pgg-parse-armor-region start end
380 List the sequence of packets in the current region between @var{start}
381 and @var{end}.
382 @end defun
383
384 @defvar pgg-ignore-packet-checksum
385 If non-@code{nil}, don't check the checksum of the packets.
386 @end defvar
387
388 @node Function Index
389 @chapter Function Index
390 @printindex fn
391
392 @node Variable Index
393 @chapter Variable Index
394 @printindex vr
395
396 @summarycontents
397 @contents
398 @bye
399
400 @c End: