diff options
author | Brent Cook <busterb@gmail.com> | 2020-07-22 09:39:01 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2020-07-22 09:39:01 -0500 |
commit | 706a21658c444e17f931e2a415377b628dc071fb (patch) | |
tree | 5c0c4c2c64480ba54cd292fbed8b05bc89394529 | |
parent | b2311ac5d9c910210d946ee6664c04d85ed50d66 (diff) | |
parent | 77b8a4739336937523e5c152d0f718f87b79d071 (diff) | |
download | portable-706a21658c444e17f931e2a415377b628dc071fb.tar.gz portable-706a21658c444e17f931e2a415377b628dc071fb.tar.bz2 portable-706a21658c444e17f931e2a415377b628dc071fb.zip |
Land #605, Update testssl.bat
-rw-r--r-- | tests/testssl.bat | 11 |
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 | ) | ||
73 | for %%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" |