3 ;; Copyright (C) 2016 g10 Code GmbH
5 ;; This file is part of GnuPG.
7 ;; GnuPG is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 3 of the License, or
10 ;; (at your option) any later version.
12 ;; GnuPG is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with this program; if not, see <http://www.gnu.org/licenses/>.
20 (load (with-path "defs.scm"))
21 (setup-legacy-environment)
23 ;; Import the sample key
25 ;; pub 1024R/8BC90111 2015-12-02
26 ;; Key fingerprint = E657 FB60 7BB4 F21C 90BB 6651 BC06 7AF2 8BC9 0111
27 ;; uid [ultimate] Barrett Brown <barrett@example.org>
28 ;; sub 1024R/3E880CFF 2015-12-02 (encryption)
29 ;; sub 1024R/F5F77B83 2015-12-02 (signing)
30 ;; sub 1024R/45117079 2015-12-02 (encryption)
31 ;; sub 1024R/1EA97479 2015-12-02 (signing)
33 (info "Importing public key.")
35 `(,(tool 'gpg) --import
36 ,(in-srcdir "samplekeys/E657FB607BB4F21C90BB6651BC067AF28BC90111.asc")))
38 ;; By default, the most recent, valid signing subkey (1EA97479).
40 "Checking that the most recent, valid signing subkey is used by default"
44 (pipe:defer (lambda (sink) (display "" (fdopen sink "w"))))
45 (pipe:gpg `(--default-key ,keyid -s))
46 (pipe:gpg '(--verify --status-fd=1)))
49 (unless (string-contains?
50 c "VALIDSIG 5FBA84ACE02DCB17DA3DFF6BBCA43C441EA97479")
52 '("8BC90111" "3E880CFF" "F5F77B83" "45117079" "1EA97479"))
54 ;; But, if we request a particular signing key, we should get it.
56 "Checking that the most recent, valid encryption subkey is used by default"
60 (pipe:defer (lambda (sink) (display "" (fdopen sink "w"))))
61 ;; We need another recipient, because --encrypt-to-default-key is
62 ;; not considered a recipient and gpg doesn't encrypt without any
65 ;; Note: it doesn't matter whether we specify the primary key or
66 ;; a subkey: the newest encryption subkey will be used.
67 (pipe:gpg `(--default-key ,keyid --encrypt-to-default-key
69 (pipe:gpg '(--list-packets)))
72 (unless (any (lambda (line)
73 (and (string-prefix? line ":pubkey enc packet:")
74 (string-suffix? line "45117079")))
75 (string-split-newlines c))
77 '("8BC90111" "3E880CFF" "F5F77B83" "45117079" "1EA97479"))