OpenSSL 1.1.1-pre2
This commit is contained in:
+106
-1
@@ -1,6 +1,6 @@
|
||||
# Generated with generate_ssl_tests.pl
|
||||
|
||||
num_tests = 6
|
||||
num_tests = 9
|
||||
|
||||
test-0 = 0-SNI-switch-context
|
||||
test-1 = 1-SNI-keep-context
|
||||
@@ -8,6 +8,9 @@ test-2 = 2-SNI-no-server-support
|
||||
test-3 = 3-SNI-no-client-support
|
||||
test-4 = 4-SNI-bad-sni-ignore-mismatch
|
||||
test-5 = 5-SNI-bad-sni-reject-mismatch
|
||||
test-6 = 6-SNI-bad-clienthello-sni-ignore-mismatch
|
||||
test-7 = 7-SNI-bad-clienthello-sni-reject-mismatch
|
||||
test-8 = 8-SNI-clienthello-disable-v12
|
||||
# ===========================================================
|
||||
|
||||
[0-SNI-switch-context]
|
||||
@@ -201,3 +204,105 @@ ServerNameCallback = RejectMismatch
|
||||
ServerName = invalid
|
||||
|
||||
|
||||
# ===========================================================
|
||||
|
||||
[6-SNI-bad-clienthello-sni-ignore-mismatch]
|
||||
ssl_conf = 6-SNI-bad-clienthello-sni-ignore-mismatch-ssl
|
||||
|
||||
[6-SNI-bad-clienthello-sni-ignore-mismatch-ssl]
|
||||
server = 6-SNI-bad-clienthello-sni-ignore-mismatch-server
|
||||
client = 6-SNI-bad-clienthello-sni-ignore-mismatch-client
|
||||
server2 = 6-SNI-bad-clienthello-sni-ignore-mismatch-server
|
||||
|
||||
[6-SNI-bad-clienthello-sni-ignore-mismatch-server]
|
||||
Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
|
||||
CipherString = DEFAULT
|
||||
PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
|
||||
|
||||
[6-SNI-bad-clienthello-sni-ignore-mismatch-client]
|
||||
CipherString = DEFAULT
|
||||
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
|
||||
VerifyMode = Peer
|
||||
|
||||
[test-6]
|
||||
ExpectedResult = Success
|
||||
ExpectedServerName = server1
|
||||
server = 6-SNI-bad-clienthello-sni-ignore-mismatch-server-extra
|
||||
server2 = 6-SNI-bad-clienthello-sni-ignore-mismatch-server-extra
|
||||
client = 6-SNI-bad-clienthello-sni-ignore-mismatch-client-extra
|
||||
|
||||
[6-SNI-bad-clienthello-sni-ignore-mismatch-server-extra]
|
||||
ServerNameCallback = ClientHelloIgnoreMismatch
|
||||
|
||||
[6-SNI-bad-clienthello-sni-ignore-mismatch-client-extra]
|
||||
ServerName = invalid
|
||||
|
||||
|
||||
# ===========================================================
|
||||
|
||||
[7-SNI-bad-clienthello-sni-reject-mismatch]
|
||||
ssl_conf = 7-SNI-bad-clienthello-sni-reject-mismatch-ssl
|
||||
|
||||
[7-SNI-bad-clienthello-sni-reject-mismatch-ssl]
|
||||
server = 7-SNI-bad-clienthello-sni-reject-mismatch-server
|
||||
client = 7-SNI-bad-clienthello-sni-reject-mismatch-client
|
||||
server2 = 7-SNI-bad-clienthello-sni-reject-mismatch-server
|
||||
|
||||
[7-SNI-bad-clienthello-sni-reject-mismatch-server]
|
||||
Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
|
||||
CipherString = DEFAULT
|
||||
PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
|
||||
|
||||
[7-SNI-bad-clienthello-sni-reject-mismatch-client]
|
||||
CipherString = DEFAULT
|
||||
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
|
||||
VerifyMode = Peer
|
||||
|
||||
[test-7]
|
||||
ExpectedResult = ServerFail
|
||||
ExpectedServerAlert = UnrecognizedName
|
||||
server = 7-SNI-bad-clienthello-sni-reject-mismatch-server-extra
|
||||
server2 = 7-SNI-bad-clienthello-sni-reject-mismatch-server-extra
|
||||
client = 7-SNI-bad-clienthello-sni-reject-mismatch-client-extra
|
||||
|
||||
[7-SNI-bad-clienthello-sni-reject-mismatch-server-extra]
|
||||
ServerNameCallback = ClientHelloRejectMismatch
|
||||
|
||||
[7-SNI-bad-clienthello-sni-reject-mismatch-client-extra]
|
||||
ServerName = invalid
|
||||
|
||||
|
||||
# ===========================================================
|
||||
|
||||
[8-SNI-clienthello-disable-v12]
|
||||
ssl_conf = 8-SNI-clienthello-disable-v12-ssl
|
||||
|
||||
[8-SNI-clienthello-disable-v12-ssl]
|
||||
server = 8-SNI-clienthello-disable-v12-server
|
||||
client = 8-SNI-clienthello-disable-v12-client
|
||||
server2 = 8-SNI-clienthello-disable-v12-server
|
||||
|
||||
[8-SNI-clienthello-disable-v12-server]
|
||||
Certificate = ${ENV::TEST_CERTS_DIR}/servercert.pem
|
||||
CipherString = DEFAULT
|
||||
PrivateKey = ${ENV::TEST_CERTS_DIR}/serverkey.pem
|
||||
|
||||
[8-SNI-clienthello-disable-v12-client]
|
||||
CipherString = DEFAULT
|
||||
VerifyCAFile = ${ENV::TEST_CERTS_DIR}/rootcert.pem
|
||||
VerifyMode = Peer
|
||||
|
||||
[test-8]
|
||||
ExpectedProtocol = TLSv1.1
|
||||
ExpectedServerName = server2
|
||||
server = 8-SNI-clienthello-disable-v12-server-extra
|
||||
server2 = 8-SNI-clienthello-disable-v12-server-extra
|
||||
client = 8-SNI-clienthello-disable-v12-client-extra
|
||||
|
||||
[8-SNI-clienthello-disable-v12-server-extra]
|
||||
ServerNameCallback = ClientHelloNoV12
|
||||
|
||||
[8-SNI-clienthello-disable-v12-client-extra]
|
||||
ServerName = server2
|
||||
|
||||
|
||||
Reference in New Issue
Block a user