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