diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/openpgp/signencrypt-dsa.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/openpgp/signencrypt-dsa.test b/tests/openpgp/signencrypt-dsa.test index 94730998a..dd724c97e 100755 --- a/tests/openpgp/signencrypt-dsa.test +++ b/tests/openpgp/signencrypt-dsa.test @@ -18,7 +18,14 @@ for i in $plain_files $data_files ; do cmp $i y || error "$i: mismatch" done -for da in ripemd160 sha1; do +algos="sha1" +if have_hash_algo "RIPEMD160"; then + algos="ripemd160 $algos" +else + echo "Hash algorithm RIPEMD160 is not installed (not an error)" +fi + +for da in $algos; do for i in $plain_files; do $GPG --always-trust -se -o x --yes --digest-algo $da \ -u "$dsa_usrname1" -r "$dsa_usrname2" $i |