mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
14 lines
331 B
Scheme
14 lines
331 B
Scheme
|
#!/usr/bin/env gpgscm
|
||
|
|
||
|
(load (with-path "defs.scm"))
|
||
|
|
||
|
(for-each-p
|
||
|
"Checking encryption, signing, and producing armored output"
|
||
|
(lambda (source)
|
||
|
(tr:do
|
||
|
(tr:open source)
|
||
|
(tr:gpg usrpass1 '(--yes -seat -r two@example.com --passphrase-fd "0"))
|
||
|
(tr:gpg "" '(--yes))
|
||
|
(tr:assert-weak-identity source)))
|
||
|
plain-files)
|