- FIXED: #38, new openssl from peter mosmans makes the workaround unneccessary

This commit is contained in:
Dirk 2015-02-21 10:38:04 +01:00
parent cacb200049
commit bacb3b69ba
1 changed files with 9 additions and 9 deletions

View File

@ -938,17 +938,17 @@ run_std_cipherlists() {
std_cipherlists NULL:eNULL " Null Cipher " 1
std_cipherlists aNULL " Anonymous NULL Cipher " 1
std_cipherlists ADH " Anonymous DH Cipher " 1
if [[ "$OSSL_VER" = *chacha* ]]; then
out " 40 Bit encryption "; pr_magentaln "Local problem: $OPENSSL has a bug here"
else
#if [[ "$OSSL_VER" = *chacha* ]]; then
#out " 40 Bit encryption "; pr_magentaln "Local problem: $OPENSSL has a bug here"
#else
std_cipherlists EXPORT40 " 40 Bit encryption " 1
fi
#fi
std_cipherlists EXPORT56 " 56 Bit encryption " 1
if [[ "$OSSL_VER" = *chacha* ]]; then
out " Export Cipher (general) "; pr_magentaln "Local problem: $OPENSSL has a bug here"
else
#if [[ "$OSSL_VER" = *chacha* ]]; then
# out " Export Cipher (general) "; pr_magentaln "Local problem: $OPENSSL has a bug here"
#else
std_cipherlists EXPORT " Export Cipher (general) " 1
fi
#fi
std_cipherlists LOW " Low (<=64 Bit) " 1
std_cipherlists DES " DES Cipher " 1
std_cipherlists 3DES " Triple DES Cipher " 2
@ -2858,6 +2858,6 @@ case "$1" in
exit $ret ;;
esac
# $Id: testssl.sh,v 1.191 2015/02/15 13:00:12 dirkw Exp $
# $Id: testssl.sh,v 1.192 2015/02/21 09:38:03 dirkw Exp $
# vim:ts=5:sw=5