Test TLSv1.3 ciphersuites (upstream r1.14)

This commit is contained in:
kinichiro 2020-07-22 22:03:59 +09:00
parent fa26b5359b
commit ea0dd3c107

View File

@ -67,6 +67,17 @@ for %%p in ( SSLv3,TLSv1.2 ) do (
)
)
)
for %%p in ( TLSv1.3 ) do (
echo "Testing ciphersuites for %%p"
for /f "usebackq" %%c in (`%openssl% ciphers -v "%%p" ^| find "%%p"`) do (
echo "Testing %%c"
%ssltest% -cipher %%c
if !errorlevel! neq 0 (
echo "Failed %%c"
exit /b 1
)
)
)
REM ##########################################################################