aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
Diffstat (limited to 'checks')
-rw-r--r--checks/ChangeLog5
-rwxr-xr-xchecks/conventional.test12
2 files changed, 9 insertions, 8 deletions
diff --git a/checks/ChangeLog b/checks/ChangeLog
index 2aabd8678..d5360ce3e 100644
--- a/checks/ChangeLog
+++ b/checks/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-02 Werner Koch <[email protected]>
+
+ * conventional.test: have_cipher_algo now requires uppercase
+ algorithm names. Changed. Noted by John R. Shannon.
+
2004-02-09 David Shaw <[email protected]>
* clearsig.test, sigs.test: Properly detect RSA being missing, and
diff --git a/checks/conventional.test b/checks/conventional.test
index 255f6ce0b..a1a80215d 100755
--- a/checks/conventional.test
+++ b/checks/conventional.test
@@ -11,23 +11,19 @@ done
algos="3des"
-if have_cipher_algo "idea"; then
+if have_cipher_algo "CAST5"; then
algos="$algos idea"
fi
-if have_cipher_algo "cast5"; then
+if have_cipher_algo "BLOWFISH"; then
algos="$algos idea"
fi
-if have_cipher_algo "blowfish"; then
- algos="$algos idea"
-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