summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libssl/ssl/testssl6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/ssl/testssl b/src/regress/lib/libssl/ssl/testssl
index 428870bb43..a785e9c8ed 100644
--- a/src/regress/lib/libssl/ssl/testssl
+++ b/src/regress/lib/libssl/ssl/testssl
@@ -55,7 +55,8 @@ $ssltest -bio_pair -server_auth -client_auth -app_verify $CA $extra || exit 1
55echo "Testing ciphersuites" 55echo "Testing ciphersuites"
56for protocol in SSLv3 TLSv1.2; do 56for protocol in SSLv3 TLSv1.2; do
57 echo "Testing ciphersuites for $protocol" 57 echo "Testing ciphersuites for $protocol"
58 for cipher in `$openssl ciphers "$protocol+aRSA" | tr ':' ' '`; do 58 for cipher in `$openssl ciphers -v "$protocol+aRSA" |
59 awk "/ $protocol / { print \\$1 }"`; do
59 echo "Testing $cipher" 60 echo "Testing $cipher"
60 $ssltest -cipher $cipher 61 $ssltest -cipher $cipher
61 if [ $? -ne 0 ] ; then 62 if [ $? -ne 0 ] ; then
@@ -107,7 +108,8 @@ $ssltest -dtls1 -server_auth -client_auth $CA $extra || exit 1
107echo "Testing DTLS ciphersuites" 108echo "Testing DTLS ciphersuites"
108for protocol in SSLv3; do 109for protocol in SSLv3; do
109 echo "Testing ciphersuites for $protocol" 110 echo "Testing ciphersuites for $protocol"
110 for cipher in `$openssl ciphers "RSA+$protocol" | tr ':' '\n' | 111 for cipher in `$openssl ciphers -v "RSA+$protocol" |
112 awk "/ $protocol / { print \\$1 }" |
111 grep -v RC4`; do 113 grep -v RC4`; do
112 echo "Testing $cipher" 114 echo "Testing $cipher"
113 $ssltest -cipher $cipher -dtls1 115 $ssltest -cipher $cipher -dtls1