aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2020-07-22 09:39:01 -0500
committerBrent Cook <busterb@gmail.com>2020-07-22 09:39:01 -0500
commit706a21658c444e17f931e2a415377b628dc071fb (patch)
tree5c0c4c2c64480ba54cd292fbed8b05bc89394529
parentb2311ac5d9c910210d946ee6664c04d85ed50d66 (diff)
parent77b8a4739336937523e5c152d0f718f87b79d071 (diff)
downloadportable-706a21658c444e17f931e2a415377b628dc071fb.tar.gz
portable-706a21658c444e17f931e2a415377b628dc071fb.tar.bz2
portable-706a21658c444e17f931e2a415377b628dc071fb.zip
Land #605, Update testssl.bat
-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"