Force TLSv1.2 when testing SSLv3/TLSv1.2 cipher suites. (upstream r1.15)

This commit is contained in:
kinichiro 2020-07-22 22:05:50 +09:00
parent ea0dd3c107
commit 77b8a47393

View File

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