aboutsummaryrefslogtreecommitdiffstats
path: root/checks/signencrypt.test
blob: 9a041877926920da76e45ea68d40dc4a2b0f6f95 (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