1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* conventional.test, encrypt.test, encrypt-dsa.test,

conventional-mdc.test: Fix some broken tests that were only testing
3DES instead of all available ciphers.
This commit is contained in:
David Shaw 2007-05-03 00:54:28 +00:00
parent 1843485de9
commit 19df6dc9e3
5 changed files with 31 additions and 21 deletions

View file

@ -11,23 +11,23 @@ done
algos="3des"
if have_cipher_algo "idea"; then
if have_cipher_algo "IDEA"; then
algos="$algos idea"
fi
if have_cipher_algo "cast5"; then
algos="$algos idea"
if have_cipher_algo "CAST5"; then
algos="$algos cast5"
fi
if have_cipher_algo "blowfish"; then
algos="$algos idea"
if have_cipher_algo "BLOWFISH"; then
algos="$algos blowfish"
fi
if have_cipher_algo "aes"; then
if have_cipher_algo "AES"; then
algos="$algos aes aes192 aes256"
fi
if have_cipher_algo "twofish"; then
if have_cipher_algo "TWOFISH"; then
algos="$algos twofish"
fi