1 ;;; epg-config.el --- configuration of the EasyPG Library
3 ;; Copyright (C) 2006-2016 Free Software Foundation, Inc.
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Keywords: PGP, GnuPG
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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.")
36 "Interface to the GNU Privacy Guard (GnuPG)."
42 (defcustom epg-gpg-program
(cond ((executable-find "gpg") "gpg")
43 ((executable-find "gpg2") "gpg2")
45 "The `gpg' executable."
49 (defcustom epg-gpgsm-program
"gpgsm"
50 "The `gpgsm' executable."
54 (defcustom epg-gpgconf-program
"gpgconf"
55 "The `gpgconf' executable."
60 (defcustom epg-gpg-home-directory nil
61 "The directory which contains the configuration files of `epg-gpg-program'."
63 :type
'(choice (const :tag
"Default" nil
) directory
))
65 (defcustom epg-passphrase-coding-system nil
66 "Coding system to use with messages from `epg-gpg-program'."
70 (defcustom epg-debug nil
71 "If non-nil, debug output goes to the \" *epg-debug*\" buffer.
72 Note that the buffer name starts with a space."
76 (defconst epg-gpg-minimum-version
"1.4.3")
79 (defun epg-configuration ()
80 "Return a list of internal configuration parameters of `epg-gpg-program'."
81 (let (config groups type args
)
83 (apply #'call-process epg-gpg-program nil
(list t nil
) nil
84 (append (if epg-gpg-home-directory
85 (list "--homedir" epg-gpg-home-directory
))
86 '("--with-colons" "--list-config")))
87 (goto-char (point-min))
88 (while (re-search-forward "^cfg:\\([^:]+\\):\\(.*\\)" nil t
)
89 (setq type
(intern (match-string 1))
90 args
(match-string 2))
93 (if (string-match "\\`\\([^:]+\\):" args
)
95 (cons (cons (downcase (match-string 1 args
))
96 (delete "" (split-string
102 (message "Invalid group configuration: %S" args
))))
103 ((memq type
'(pubkey cipher digest compress
))
104 (if (string-match "\\`\\([0-9]+\\)\\(;[0-9]+\\)*" args
)
107 (mapcar #'string-to-number
108 (delete "" (split-string args
";"))))
111 (message "Invalid %S algorithm configuration: %S"
114 (setq config
(cons (cons type args
) config
))))))
116 (cons (cons 'groups groups
) config
)
119 (defun epg-config--parse-version (string)
122 (while (eq index
(string-match "\\([0-9]+\\)\\.?" string index
))
123 (setq version
(cons (string-to-number (match-string 1 string
))
125 index
(match-end 0)))
128 (defun epg-config--compare-version (v1 v2
)
129 (while (and v1 v2
(= (car v1
) (car v2
)))
130 (setq v1
(cdr v1
) v2
(cdr v2
)))
131 (- (or (car v1
) 0) (or (car v2
) 0)))
134 (defun epg-check-configuration (config &optional minimum-version
)
135 "Verify that a sufficient version of GnuPG is installed."
136 (let ((entry (assq 'version config
))
139 (stringp (cdr entry
)))
140 (error "Undetermined version: %S" entry
))
141 (setq version
(epg-config--parse-version (cdr entry
))
142 minimum-version
(epg-config--parse-version
144 epg-gpg-minimum-version
)))
145 (unless (>= (epg-config--compare-version version minimum-version
) 0)
146 (error "Unsupported version: %s" (cdr entry
)))))
149 (defun epg-expand-group (config group
)
150 "Look at CONFIG and try to expand GROUP."
151 (let ((entry (assq 'groups config
)))
153 (setq entry
(assoc (downcase group
) (cdr entry
))))
156 (provide 'epg-config
)
158 ;;; epg-config.el ends here