aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/testssl.bat11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/testssl.bat b/tests/testssl.bat
index 0664eb0..4c3ca1b 100644
--- a/tests/testssl.bat
+++ b/tests/testssl.bat
@@ -63,6 +63,17 @@ for %%p in ( SSLv3,TLSv1.2 ) do (
63 echo "Testing ciphersuites for %%p" 63 echo "Testing ciphersuites for %%p"
64 for /f "usebackq" %%c in (`%openssl% ciphers -v "%%p+aRSA" ^| find "%%p"`) do ( 64 for /f "usebackq" %%c in (`%openssl% ciphers -v "%%p+aRSA" ^| find "%%p"`) do (
65 echo "Testing %%c" 65 echo "Testing %%c"
66 %ssltest% -cipher %%c -tls1_2
67 if !errorlevel! neq 0 (
68 echo "Failed %%c"
69 exit /b 1
70 )
71 )
72)
73for %%p in ( TLSv1.3 ) do (
74 echo "Testing ciphersuites for %%p"
75 for /f "usebackq" %%c in (`%openssl% ciphers -v "%%p" ^| find "%%p"`) do (
76 echo "Testing %%c"
66 %ssltest% -cipher %%c 77 %ssltest% -cipher %%c
67 if !errorlevel! neq 0 ( 78 if !errorlevel! neq 0 (
68 echo "Failed %%c" 79 echo "Failed %%c"