1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-21 15:01:41 +02:00
gnupg/checks/armencrypt.test
1998-02-26 16:56:31 +00:00

12 lines
219 B
Bash
Executable File

#!/bin/sh
. defs.inc || exit 3
#info Checking armored encryption
for i in $plain_files $data_files ; do
run_gpg -ea -o x --yes -r "$usrname2" $i
run_gpg -o y --yes x
cmp $i y || error "$i: mismatch"
done