diff options
Diffstat (limited to 'checks/armsignencrypt.test')
-rwxr-xr-x | checks/armsignencrypt.test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/checks/armsignencrypt.test b/checks/armsignencrypt.test new file mode 100755 index 000000000..3b87b2580 --- /dev/null +++ b/checks/armsignencrypt.test @@ -0,0 +1,13 @@ +#!/bin/sh + +. defs.inc || exit 3 + + +#info Checking armored signing and encryption +for i in $plain_files $data_files ; do + echo "$usrpass1" \ + | run_gpg --passphrase-fd 0 -sae -o x --yes -r "$usrname2" $i + run_gpg -o y --yes x + cmp $i y || error "$i: mismatch" +done + |