5ec53adbc73418eb73920dfa44f3dd904bff2c3b
[gnus] / lisp / pgg-def.el
1 ;;; pgg-def.el --- functions/macros for defining PGG functions
2
3 ;; Copyright (C) 1999, 2003 Free Software Foundation, Inc.
4
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Created: 1999/11/02
7 ;; Keywords: PGP, OpenPGP, GnuPG
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
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.
25
26 ;;; Code:
27
28 (defgroup pgg ()
29   "Glue for the various PGP implementations."
30   :group 'mime)
31
32 (defcustom pgg-default-scheme 'gpg
33   "Default PGP scheme."
34   :group 'pgg
35   :type '(choice (const :tag "GnuPG" gpg)
36                  (const :tag "PGP 5" pgp5)
37                  (const :tag "PGP" pgp)))
38
39 (defcustom pgg-default-user-id (user-login-name)
40   "User ID of your default identity."
41   :group 'pgg
42   :type 'string)
43
44 (defcustom pgg-default-keyserver-address "subkeys.pgp.net"
45   "Host name of keyserver."
46   :group 'pgg
47   :type 'string)
48
49 (defcustom pgg-query-keyserver nil
50   "Whether PGG queries keyservers for missing keys when verifying messages."
51   :version "21.4"
52   :group 'pgg
53   :type 'boolean)
54
55 (defcustom pgg-encrypt-for-me t
56   "If t, encrypt all outgoing messages with user's public key."
57   :group 'pgg
58   :type 'boolean)
59
60 (defcustom pgg-cache-passphrase t
61   "If t, cache passphrase."
62   :group 'pgg
63   :type 'boolean)
64
65 (defcustom pgg-passphrase-cache-expiry 16
66   "How many seconds the passphrase is cached.
67 Whether the passphrase is cached at all is controlled by
68 `pgg-cache-passphrase'."
69   :group 'pgg
70   :type 'integer)
71
72 (defvar pgg-messages-coding-system nil
73   "Coding system used when reading from a PGP external process.")
74
75 (defvar pgg-status-buffer " *PGG status*")
76 (defvar pgg-errors-buffer " *PGG errors*")
77 (defvar pgg-output-buffer " *PGG output*")
78
79 (defvar pgg-echo-buffer "*PGG-echo*")
80
81 (defvar pgg-scheme nil
82   "Current scheme of PGP implementation.")
83
84 (defmacro pgg-truncate-key-identifier (key)
85   `(if (> (length ,key) 8) (substring ,key 8) ,key))
86
87 (provide 'pgg-def)
88
89 ;;; arch-tag: c425f3ab-ed75-4055-bb46-431a418c94b7
90 ;;; pgg-def.el ends here