Make use of the card's extended capabilities.
[gnupg.git] / tests / openpgp / sigs-dsa.test
blob8b3b14f149911b6c8171b11b5ea996161e37b76d
1 #!/bin/sh
2 # Copyright 1998,1999,2000,2001,2002,2003,2004,2005,2006,
3 # 2007 Free Software Foundation, Inc.
4 # This file is free software; as a special exception the author gives
5 # unlimited permission to copy and/or distribute it, with or without
6 # modifications, as long as this notice is preserved. This file is
7 # distributed in the hope that it will be useful, but WITHOUT ANY
8 # WARRANTY, to the extent permitted by law; without even the implied
9 # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 . $srcdir/defs.inc || exit 3
13 #info Checking DSA signatures (default digest algo)
14 for i in $plain_files $data_files; do
15 $GPG $dsa_keyrings -s -o x --yes -u $dsa_usrname1 $i
16 $GPG $dsa_keyrings -o y --yes x
17 cmp $i y || error "$i: mismatch"
18 done
20 for da in ripemd160 sha1; do
21 for i in $plain_files; do
22 $GPG $dsa_keyrings --digest-algo $da \
23 -s -o x --yes -u $dsa_usrname1 $i
24 $GPG $dsa_keyrings -o y --yes x
25 cmp $i y || error "$i: mismatch"
26 # process only the first one
27 break
28 done
29 done