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:
parent
1843485de9
commit
19df6dc9e3
5 changed files with 31 additions and 21 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue