mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
12 lines
327 B
Bash
Executable file
12 lines
327 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. $srcdir/defs.inc || exit 3
|
|
|
|
#info Checking armored encryption with a pipe
|
|
for i in $plain_files $data_files ; do
|
|
$srcdir/run-gpg -ea --yes -r "$usrname2" < $i | tee x | $srcdir/run-gpg -o y --yes
|
|
cmp $i y || error "$i: mismatch"
|
|
$srcdir/run-gpg --yes < x > y
|
|
cmp $i y || error "$i: mismatch"
|
|
done
|
|
|