From 0012c1a3c02aeb298228bfaac96cfded7ea02875 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Fri, 12 Dec 2014 12:23:35 +0000 Subject: Increase cipher suite test coverage by including all cipher suites that use RSA authentication, rather than only those that use RSA key exchange. --- src/regress/lib/libssl/ssl/testssl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/regress/lib/libssl/ssl/testssl b/src/regress/lib/libssl/ssl/testssl index 379ddfcc50..04f82a9da1 100644 --- a/src/regress/lib/libssl/ssl/testssl +++ b/src/regress/lib/libssl/ssl/testssl @@ -77,7 +77,7 @@ $ssltest -bio_pair -server_auth -client_auth -app_verify $CA $extra || exit 1 echo "Testing ciphersuites" for protocol in SSLv3 TLSv1.2; do echo "Testing ciphersuites for $protocol" - for cipher in `$openssl ciphers "RSA+$protocol" | tr ':' ' '`; do + for cipher in `$openssl ciphers "$protocol+aRSA" | tr ':' ' '`; do echo "Testing $cipher" prot="" if [ $protocol = "SSLv3" ] ; then @@ -85,8 +85,8 @@ for protocol in SSLv3 TLSv1.2; do fi $ssltest -cipher $cipher $prot if [ $? -ne 0 ] ; then - echo "Failed $cipher" - exit 1 + echo "Failed $cipher" + exit 1 fi done done @@ -138,8 +138,8 @@ for protocol in SSLv3; do echo "Testing $cipher" $ssltest -cipher $cipher -dtls1 if [ $? -ne 0 ] ; then - echo "Failed $cipher" - exit 1 + echo "Failed $cipher" + exit 1 fi done done -- cgit v1.2.3-55-g6feb