aboutsummaryrefslogtreecommitdiffstats
path: root/checks/encrypt.test
blob: 468136cca67e90d8ec85a9765c8684793b032634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

. $srcdir/defs.inc || exit 3

#info Checking encryption
for i in $plain_files $data_files ; do
    $srcdir/run-gpg -e -o x --yes -r "$usrname2" $i
    $srcdir/run-gpg -o y --yes x
    cmp $i y || error "$i: mismatch"
done
for i in $plain_files $data_files ; do
    $srcdir/run-gpg -e -o x --yes -r "$usrname2" --cipher-algo cast5 $i
    $srcdir/run-gpg -o y --yes x
    cmp $i y || error "$i: mismatch"
done