aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2020-07-22 22:03:59 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2020-07-22 22:22:06 +0900
commitea0dd3c107a39de626a42b10162e2175eed68ae0 (patch)
tree550ac4d09d1a78488e2977a87f0c160710554dac
parentfa26b5359b76570b471a1dc3b8ed5dfbd240520c (diff)
downloadportable-ea0dd3c107a39de626a42b10162e2175eed68ae0.tar.gz
portable-ea0dd3c107a39de626a42b10162e2175eed68ae0.tar.bz2
portable-ea0dd3c107a39de626a42b10162e2175eed68ae0.zip
Test TLSv1.3 ciphersuites (upstream r1.14)
-rw-r--r--tests/testssl.bat11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/testssl.bat b/tests/testssl.bat
index 1a55f76..1bc175e 100644
--- a/tests/testssl.bat
+++ b/tests/testssl.bat
@@ -67,6 +67,17 @@ for %%p in ( SSLv3,TLSv1.2 ) do (
67 ) 67 )
68 ) 68 )
69) 69)
70for %%p in ( TLSv1.3 ) do (
71 echo "Testing ciphersuites for %%p"
72 for /f "usebackq" %%c in (`%openssl% ciphers -v "%%p" ^| find "%%p"`) do (
73 echo "Testing %%c"
74 %ssltest% -cipher %%c
75 if !errorlevel! neq 0 (
76 echo "Failed %%c"
77 exit /b 1
78 )
79 )
80)
70 81
71REM ########################################################################## 82REM ##########################################################################
72 83