mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01: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
2e81dd1b98
commit
ddfaad29fd
@ -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>
|
2007-03-04 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* verify.test: Use --allow-multiple-messages instead of
|
* verify.test: Use --allow-multiple-messages instead of
|
||||||
|
@ -4,23 +4,23 @@
|
|||||||
|
|
||||||
algos="3des"
|
algos="3des"
|
||||||
|
|
||||||
if have_cipher_algo "idea"; then
|
if have_cipher_algo "IDEA"; then
|
||||||
algos="$algos idea"
|
algos="$algos idea"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "cast5"; then
|
if have_cipher_algo "CAST5"; then
|
||||||
algos="$algos idea"
|
algos="$algos cast5"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "blowfish"; then
|
if have_cipher_algo "BLOWFISH"; then
|
||||||
algos="$algos idea"
|
algos="$algos blowfish"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "aes"; then
|
if have_cipher_algo "AES"; then
|
||||||
algos="$algos aes aes192 aes256"
|
algos="$algos aes aes192 aes256"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "twofish"; then
|
if have_cipher_algo "TWOFISH"; then
|
||||||
algos="$algos twofish"
|
algos="$algos twofish"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -11,6 +11,10 @@ done
|
|||||||
|
|
||||||
algos="3des"
|
algos="3des"
|
||||||
|
|
||||||
|
if have_cipher_algo "IDEA"; then
|
||||||
|
algos="$algos idea"
|
||||||
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "CAST5"; then
|
if have_cipher_algo "CAST5"; then
|
||||||
algos="$algos cast5"
|
algos="$algos cast5"
|
||||||
fi
|
fi
|
||||||
|
@ -11,23 +11,23 @@ done
|
|||||||
|
|
||||||
algos="3des"
|
algos="3des"
|
||||||
|
|
||||||
if have_cipher_algo "idea"; then
|
if have_cipher_algo "IDEA"; then
|
||||||
algos="$algos idea"
|
algos="$algos idea"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "cast5"; then
|
if have_cipher_algo "CAST5"; then
|
||||||
algos="$algos idea"
|
algos="$algos cast5"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "blowfish"; then
|
if have_cipher_algo "BLOWFISH"; then
|
||||||
algos="$algos idea"
|
algos="$algos blowfish"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "aes"; then
|
if have_cipher_algo "AES"; then
|
||||||
algos="$algos aes aes192 aes256"
|
algos="$algos aes aes192 aes256"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "twofish"; then
|
if have_cipher_algo "TWOFISH"; then
|
||||||
algos="$algos twofish"
|
algos="$algos twofish"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -11,23 +11,23 @@ done
|
|||||||
|
|
||||||
algos="3des"
|
algos="3des"
|
||||||
|
|
||||||
if have_cipher_algo "idea"; then
|
if have_cipher_algo "IDEA"; then
|
||||||
algos="$algos idea"
|
algos="$algos idea"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "cast5"; then
|
if have_cipher_algo "CAST5"; then
|
||||||
algos="$algos idea"
|
algos="$algos cast5"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "blowfish"; then
|
if have_cipher_algo "BLOWFISH"; then
|
||||||
algos="$algos idea"
|
algos="$algos blowfish"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "aes"; then
|
if have_cipher_algo "AES"; then
|
||||||
algos="$algos aes aes192 aes256"
|
algos="$algos aes aes192 aes256"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if have_cipher_algo "twofish"; then
|
if have_cipher_algo "TWOFISH"; then
|
||||||
algos="$algos twofish"
|
algos="$algos twofish"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user