1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-29 21:58:04 +02:00
gnupg/checks/signencrypt-dsa.test

23 lines
597 B
Plaintext
Raw Normal View History

1998-04-08 21:42:07 +02:00
#!/bin/sh
1998-09-14 12:33:57 +02:00
. $srcdir/defs.inc || exit 3
1998-04-08 21:42:07 +02:00
#info Checking signing and encryption for DSA
for i in $plain_files $data_files ; do
2002-06-29 15:31:13 +02:00
$GPG $dsa_keyrings --always-trust -se -o x --yes \
1998-04-08 21:42:07 +02:00
-u "$dsa_usrname1" -r "$dsa_usrname2" $i
2002-06-29 15:31:13 +02:00
$GPG $dsa_keyrings -o y --yes x
1998-04-08 21:42:07 +02:00
cmp $i y || error "$i: mismatch"
done
2002-06-29 15:31:13 +02:00
for da in ripemd160 sha1; do
1998-04-08 21:42:07 +02:00
for i in $plain_files; do
2002-06-29 15:31:13 +02:00
$GPG $dsa_keyrings --always-trust -se -o x --yes --digest-algo $da \
1998-04-08 21:42:07 +02:00
-u "$dsa_usrname1" -r "$dsa_usrname2" $i
2002-06-29 15:31:13 +02:00
$GPG $dsa_keyrings -o y --yes x
1998-04-08 21:42:07 +02:00
cmp $i y || error "$i: mismatch"
# process only the first one
break
done
done