Remove expectation for tls 1.3 nmap output

Signed-off-by: Margo Crawford <margaretc@vmware.com>
This commit is contained in:
Margo Crawford 2022-03-23 09:01:11 -07:00 committed by Monis Khan
parent 0de7bc03aa
commit 0a0fb7ede5
No known key found for this signature in database
GPG Key ID: 52C90ADA01B269B8

View File

@ -227,9 +227,9 @@ func getExpectedCiphers(configFunc ptls.ConfigFunc) string {
} }
tls12Bit = fmt.Sprintf(tls12Base, s.String()) tls12Bit = fmt.Sprintf(tls12Base, s.String())
// There should be an empty list for the TLS 1.3 ciphers. // There should be no TLS 1.3 ciphers.
// goboring disallows TLS 1.3 // goboring disallows TLS 1.3
tls13Bit = fmt.Sprintf(tls13Base, "") tls13Bit = ""
return fmt.Sprintf(baseItem, tls12Bit, tls13Bit) return fmt.Sprintf(baseItem, tls12Bit, tls13Bit)
} }
@ -250,12 +250,6 @@ Nmap done: 1 IP address (1 host up) scanned in`
%s %s
| compressors: | compressors:
| NULL | NULL
| cipher preference: client`
tls13Base = `
| TLSv1.3:
| ciphers:
%s
| cipher preference: server` | cipher preference: server`
tls12Item = `| %s (secp256r1) - A` tls12Item = `| %s (secp256r1) - A`