* 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

@ -1,3 +1,9 @@
2007-05-02 David Shaw <dshaw@jabberwocky.com>
* conventional.test, encrypt.test, encrypt-dsa.test,
conventional-mdc.test: Fix some broken tests that were only
testing 3DES instead of all available ciphers.
2007-03-04 David Shaw <dshaw@jabberwocky.com> (wk)
* verify.test: Use --allow-multiple-messages instead of

View File

@ -4,23 +4,23 @@
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

View File

@ -11,6 +11,10 @@ done
algos="3des"
if have_cipher_algo "IDEA"; then
algos="$algos idea"
fi
if have_cipher_algo "CAST5"; then
algos="$algos cast5"
fi

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

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