Make use of the card's extended capabilities.
[gnupg.git] / tests / openpgp / sigs.test
blob86b0cdc7b9643c14d942b702c0e33fa54e9a7ca9
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 for i in $plain_files $data_files; do
14 echo "$usrpass1" | $GPG --passphrase-fd 0 -s -o x --yes $i
15 $GPG -o y --yes x
16 cmp $i y || error "$i: mismatch"
17 done
19 for da in `all_hash_algos` ; do
20 echo_n "$da "
22 # RSA key, so any hash is okay
23 if have_pubkey_algo "RSA"; then
24 for i in $plain_files; do
25 $GPG -u $usrname3 --digest-algo $da -s -o x --yes $i
26 $GPG -o y --yes x
27 cmp $i y || error "$i: mismatch"
28 # process only the first one
29 break
30 done
33 # Using the DSA sig key - only 160 bit or larger hashes
34 if test $da != "MD5"; then
35 for i in $plain_files; do
36 echo "$usrpass1" | $GPG --passphrase-fd 0 --digest-algo $da \
37 -s -o x --yes $i
38 $GPG -o y --yes x
39 cmp $i y || error "$i: mismatch"
40 # process only the first one
41 break
42 done
44 done
45 echo_n "| "