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

. defs.inc || exit 3

#info Checking encryption
for i in $plain_files $data_files ; do
    ./run-gpg $dsa_keyrings -e -o x --yes -r "$dsa_usrname2" $i
    ./run-gpg $dsa_keyrings -o y --yes x
    cmp $i y || error "$i: mismatch"
done

# and with cast
for i in $plain_files $data_files ; do
    ./run-gpg $dsa_keyrings --cipher-algo cast5 -e \
					-o x --yes -r "$dsa_usrname2" $i
    ./run-gpg $dsa_keyrings -o y --yes x
    cmp $i y || error "$i: mismatch"
done