1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-23 10:29:58 +01:00
gnupg/checks/sigs-dsa.test

23 lines
539 B
Plaintext
Raw Normal View History

1998-04-08 19:42:07 +00:00
#!/bin/sh
. defs.inc || exit 3
#info Checking DSA signatures (default digest algo)
for i in $plain_files $data_files; do
./run-gpg $dsa_keyrings -s -o x --yes -u $dsa_usrname1 $i
./run-gpg $dsa_keyrings -o y --yes x
cmp $i y || error "$i: mismatch"
done
1998-06-16 15:13:28 +00:00
for da in ripemd160 sha1 md5; do
1998-04-08 19:42:07 +00:00
for i in $plain_files; do
./run-gpg $dsa_keyrings --digest-algo $da \
-s -o x --yes -u $dsa_usrname1 $i
./run-gpg $dsa_keyrings -o y --yes x
cmp $i y || error "$i: mismatch"
# process only the first one
break
done
done