summaryrefslogtreecommitdiffstats
path: root/regress/lib/libssl/ssl/testssl
diff options
context:
space:
mode:
Diffstat (limited to 'regress/lib/libssl/ssl/testssl')
-rw-r--r--regress/lib/libssl/ssl/testssl32
1 files changed, 2 insertions, 30 deletions
diff --git a/regress/lib/libssl/ssl/testssl b/regress/lib/libssl/ssl/testssl
index 04f82a9da1d..756f8e73fa2 100644
--- a/regress/lib/libssl/ssl/testssl
+++ b/regress/lib/libssl/ssl/testssl
@@ -15,18 +15,6 @@ fi
#############################################################################
-echo test sslv3
-$ssltest -ssl3 $extra || exit 1
-
-echo test sslv3 with server authentication
-$ssltest -ssl3 -server_auth $CA $extra || exit 1
-
-echo test sslv3 with client authentication
-$ssltest -ssl3 -client_auth $CA $extra || exit 1
-
-echo test sslv3 with both client and server authentication
-$ssltest -ssl3 -server_auth -client_auth $CA $extra || exit 1
-
echo test sslv2/sslv3
$ssltest $extra || exit 1
@@ -39,18 +27,6 @@ $ssltest -client_auth $CA $extra || exit 1
echo test sslv2/sslv3 with both client and server authentication
$ssltest -server_auth -client_auth $CA $extra || exit 1
-echo test sslv3 via BIO pair
-$ssltest -bio_pair -ssl3 $extra || exit 1
-
-echo test sslv3 with server authentication via BIO pair
-$ssltest -bio_pair -ssl3 -server_auth $CA $extra || exit 1
-
-echo test sslv3 with client authentication via BIO pair
-$ssltest -bio_pair -ssl3 -client_auth $CA $extra || exit 1
-
-echo test sslv3 with both client and server authentication via BIO pair
-$ssltest -bio_pair -ssl3 -server_auth -client_auth $CA $extra || exit 1
-
echo test sslv2/sslv3 via BIO pair
$ssltest $extra || exit 1
@@ -75,15 +51,11 @@ echo test sslv2/sslv3 with both client and server authentication via BIO pair an
$ssltest -bio_pair -server_auth -client_auth -app_verify $CA $extra || exit 1
echo "Testing ciphersuites"
-for protocol in SSLv3 TLSv1.2; do
+for protocol in TLSv1.2; do
echo "Testing ciphersuites for $protocol"
for cipher in `$openssl ciphers "$protocol+aRSA" | tr ':' ' '`; do
echo "Testing $cipher"
- prot=""
- if [ $protocol = "SSLv3" ] ; then
- prot="-ssl3"
- fi
- $ssltest -cipher $cipher $prot
+ $ssltest -cipher $cipher
if [ $? -ne 0 ] ; then
echo "Failed $cipher"
exit 1