1 ;;; epg-config.el --- configuration of the EasyPG Library
2 ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs 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 3, or (at your option)
14 ;; GNU Emacs 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.
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.
26 (defconst epg-package-name
"epg"
27 "Name of this package.")
29 (defconst epg-version-number
"1.0.0"
30 "Version number of this package.")
32 (defconst epg-bug-report-address
"ueno@unixuser.org"
33 "Report bugs to this address.")
40 (defcustom epg-gpg-program
"gpg"
41 "The `gpg' executable."
45 (defcustom epg-gpgsm-program
"gpgsm"
46 "The `gpgsm' executable."
50 (defcustom epg-gpg-home-directory nil
51 "The directory which contains the configuration files of `epg-gpg-program'."
53 :type
'(choice (const :tag
"Default" nil
) directory
))
55 (defcustom epg-passphrase-coding-system nil
56 "Coding system to use with messages from `epg-gpg-program'."
60 (defcustom epg-debug nil
61 "If non-nil, debug output goes to the \" *epg-debug*\" buffer.
62 Note that the buffer name starts with a space."
66 (defconst epg-gpg-minimum-version
"1.4.3")
69 (defun epg-configuration ()
70 "Return a list of internal configuration parameters of `epg-gpg-program'."
71 (let (config groups type args
)
73 (apply #'call-process epg-gpg-program nil
(list t nil
) nil
74 (append (if epg-gpg-home-directory
75 (list "--homedir" epg-gpg-home-directory
))
76 '("--with-colons" "--list-config")))
77 (goto-char (point-min))
78 (while (re-search-forward "^cfg:\\([^:]+\\):\\(.*\\)" nil t
)
79 (setq type
(intern (match-string 1))
80 args
(match-string 2))
83 (if (string-match "\\`\\([^:]+\\):" args
)
85 (cons (cons (downcase (match-string 1 args
))
86 (delete "" (split-string
92 (message "Invalid group configuration: %S" args
))))
93 ((memq type
'(pubkey cipher digest compress
))
94 (if (string-match "\\`\\([0-9]+\\)\\(;[0-9]+\\)*" args
)
97 (mapcar #'string-to-number
98 (delete "" (split-string args
";"))))
101 (message "Invalid %S algorithm configuration: %S"
104 (setq config
(cons (cons type args
) config
))))))
106 (cons (cons 'groups groups
) config
)
109 (defun epg-config--parse-version (string)
112 (while (eq index
(string-match "\\([0-9]+\\)\\.?" string index
))
113 (setq version
(cons (string-to-number (match-string 1 string
))
115 index
(match-end 0)))
118 (defun epg-config--compare-version (v1 v2
)
119 (while (and v1 v2
(= (car v1
) (car v2
)))
120 (setq v1
(cdr v1
) v2
(cdr v2
)))
121 (- (or (car v1
) 0) (or (car v2
) 0)))
124 (defun epg-check-configuration (config &optional minimum-version
)
125 "Verify that a sufficient version of GnuPG is installed."
126 (let ((entry (assq 'version config
))
129 (stringp (cdr entry
)))
130 (error "Undetermined version: %S" entry
))
131 (setq version
(epg-config--parse-version (cdr entry
))
132 minimum-version
(epg-config--parse-version
134 epg-gpg-minimum-version
)))
135 (unless (>= (epg-config--compare-version version minimum-version
) 0)
136 (error "Unsupported version: %s" (cdr entry
)))))
139 (defun epg-expand-group (config group
)
140 "Look at CONFIG and try to expand GROUP."
141 (let ((entry (assq 'groups config
)))
143 (setq entry
(assoc (downcase group
) (cdr entry
))))
146 (provide 'epg-config
)
148 ;; arch-tag: 9aca7cb8-5f63-4bcb-84ee-46fd2db0763f
149 ;;; epg-config.el ends here