aboutsummaryrefslogtreecommitdiffstats
path: root/tests/openpgp/encrypt-dsa.test
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2007-05-03 00:54:28 +0000
committerDavid Shaw <[email protected]>2007-05-03 00:54:28 +0000
commit19df6dc9e38035a2fab1d8ac593dde00f3b2b4a3 (patch)
tree1a7134ccea8008e028d0696783bc601a90ad3d64 /tests/openpgp/encrypt-dsa.test
parent2007-04-26 Marcus Brinkmann <[email protected]> (diff)
downloadgnupg-19df6dc9e38035a2fab1d8ac593dde00f3b2b4a3.tar.gz
gnupg-19df6dc9e38035a2fab1d8ac593dde00f3b2b4a3.zip
* conventional.test, encrypt.test, encrypt-dsa.test,
conventional-mdc.test: Fix some broken tests that were only testing 3DES instead of all available ciphers.
Diffstat (limited to '')
-rwxr-xr-xtests/openpgp/encrypt-dsa.test14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/openpgp/encrypt-dsa.test b/tests/openpgp/encrypt-dsa.test
index 0c6333c21..4b9da35ff 100755
--- a/tests/openpgp/encrypt-dsa.test
+++ b/tests/openpgp/encrypt-dsa.test
@@ -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