mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-30 16:17:02 +01:00
15 lines
334 B
Scheme
15 lines
334 B
Scheme
|
#!/usr/bin/env gpgscm
|
||
|
|
||
|
(load (with-path "defs.scm"))
|
||
|
|
||
|
(for-each-p
|
||
|
"Checking armored encryption and decryption using pipes"
|
||
|
(lambda (source)
|
||
|
(tr:do
|
||
|
(tr:open source)
|
||
|
(tr:pipe-do
|
||
|
(pipe:gpg `(--yes -ea --recipient ,usrname2))
|
||
|
(pipe:gpg '(--yes)))
|
||
|
(tr:assert-identity source)))
|
||
|
(append plain-files data-files))
|