From 727f2215aba8664c71c1ed38253f54bf20c5bb2a Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Mon, 27 Nov 2017 18:13:31 +0000 Subject: [PATCH] Disable PSS test for TLS 1.2, disable unknown extension client test PSS test is disabled because its implementation is not accepted yet (https://go-review.googlesource.com/c/go/+/79738). Do not check for UnknownUnencryptedExtension-Client-TLS13, the client currently does not check for extensions that it did not advertise. --- config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index e11ffe4..f55968f 100644 --- a/config.json +++ b/config.json @@ -43,11 +43,11 @@ "ClientAuth-*-TLS13*": "client: TODO implement client certs", "ClientAuth-SHA1-Fallback-*": "client: what to do on empty SigAlg ext?", - "RSA-PSS-Default-Verify": "client: TODO enable PSS by default for TLS 1.2", + "RSA-PSS-Default-*": "TODO enable PSS by default for TLS 1.2", "ECDSACurveMismatch-Verify-TLS13": "client: we do advertise the SigAlg by default", "Ed25519DefaultDisable-NoAccept": "client: expected IllegalParam instead of Unsupported Cert", "UnofferedExtension-Client*": "client: TODO reject unadvertised extension", - "UnknownExtension-Client*": "client: TODO reject unadvertised extension", + "Unknown*Extension-Client*": "client: TODO reject unadvertised extension", "PointFormat-EncryptedExtensions-TLS13": "client: TODO reject forbidden extension", "PointFormat-Client-MissingUncompressed": "client: TODO should reject", "TLS13-TestBadTicketAge-Client": "client: TODO implement resumption",