summaryrefslogtreecommitdiffstats
path: root/checks/signencrypt.test
blob: 1cf038c56d7302b292c13fcaf5f2143bca26f157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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