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