提交 4b7ffd8b 编写于 作者: M Matt Caswell

Re-enable ALPN resumption tests where we are using TLSv1.3

Reviewed-by: NRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2259)
上级 534a43ff
...@@ -383,7 +383,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem ...@@ -383,7 +383,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
[10-alpn-simple-resumption-client] [10-alpn-simple-resumption-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
...@@ -426,7 +425,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem ...@@ -426,7 +425,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
[11-alpn-server-switch-resumption-client] [11-alpn-server-switch-resumption-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
...@@ -467,13 +465,11 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem ...@@ -467,13 +465,11 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
[12-alpn-client-switch-resumption-client] [12-alpn-client-switch-resumption-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
[12-alpn-client-switch-resumption-resume-client] [12-alpn-client-switch-resumption-resume-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
...@@ -519,7 +515,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem ...@@ -519,7 +515,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
[13-alpn-alert-on-mismatch-resumption-client] [13-alpn-alert-on-mismatch-resumption-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
...@@ -565,7 +560,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem ...@@ -565,7 +560,6 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
[14-alpn-no-server-support-resumption-client] [14-alpn-no-server-support-resumption-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
...@@ -601,13 +595,11 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem ...@@ -601,13 +595,11 @@ PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
[15-alpn-no-client-support-resumption-client] [15-alpn-no-client-support-resumption-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
[15-alpn-no-client-support-resumption-resume-client] [15-alpn-no-client-support-resumption-resume-client]
CipherString = DEFAULT CipherString = DEFAULT
MaxProtocol = TLSv1.2
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
VerifyMode = Peer VerifyMode = Peer
......
...@@ -204,8 +204,6 @@ our @tests = ( ...@@ -204,8 +204,6 @@ our @tests = (
}, },
}, },
client => { client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "foo", "ALPNProtocols" => "foo",
}, },
...@@ -229,8 +227,6 @@ our @tests = ( ...@@ -229,8 +227,6 @@ our @tests = (
}, },
}, },
client => { client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "foo,bar,baz", "ALPNProtocols" => "foo,bar,baz",
}, },
...@@ -249,15 +245,11 @@ our @tests = ( ...@@ -249,15 +245,11 @@ our @tests = (
}, },
}, },
client => { client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "foo,baz", "ALPNProtocols" => "foo,baz",
}, },
}, },
resume_client => { resume_client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "bar,baz", "ALPNProtocols" => "bar,baz",
}, },
...@@ -281,8 +273,6 @@ our @tests = ( ...@@ -281,8 +273,6 @@ our @tests = (
}, },
}, },
client => { client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "foo,bar", "ALPNProtocols" => "foo,bar",
}, },
...@@ -302,8 +292,6 @@ our @tests = ( ...@@ -302,8 +292,6 @@ our @tests = (
}, },
resume_server => { }, resume_server => { },
client => { client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "foo", "ALPNProtocols" => "foo",
}, },
...@@ -322,15 +310,11 @@ our @tests = ( ...@@ -322,15 +310,11 @@ our @tests = (
}, },
}, },
client => { client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2",
extra => { extra => {
"ALPNProtocols" => "foo", "ALPNProtocols" => "foo",
}, },
}, },
resume_client => { resume_client => {
#TODO(TLS1.3): Temporary until we support TLSv1.3 resumption
MaxProtocol => "TLSv1.2"
}, },
test => { test => {
"HandshakeMode" => "Resume", "HandshakeMode" => "Resume",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册