blob: be84c13c6e88ce3086e14fbc8692a4bdc08c36b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/env gpgscm
;; Copyright (C) 2021 [email protected]
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
(load (in-srcdir "tests" "tpm2dtests" "defs.scm"))
(setup-environment)
(setenv "PINENTRY_USER_DATA" "this is a password" #t)
;;
;; Tries to import a selection of keys with no TPM representation
;; and verifies it fails. There are many unimportable keys, so
;; save time by only choosing one EC and one RSA one
;;
(define key-list '("ed25519" "rsa4096"))
(for-each
(lambda(algo)
(info "Checking failure to import" algo)
(define name algo "<ecc" algo "@example.com>")
(call-check `(,@GPG --quick-generate-key ,name ,algo))
(let ((result (call-with-io `(,@GPG --command-fd=0 --edit-key ,name "key 0" keytotpm) "y\n")))
(if (= 0 (:retcode result))
(throw "Importing Key succeeded")
(:stderr result))))
key-list)
|