The current list of supported TLS versions is as follows:
var tlsver = map[uint16]string{
tls.VersionSSL30: "ssl30",
tls.VersionTLS10: "tls10",
tls.VersionTLS11: "tls11",
tls.VersionTLS12: "tls12",
}
We should do the following:
- Remove
tls.VersionSSL30 from the map
- Add
tls.VersionTLS13 to the map
- Add a deprecation warning when
tls.VersionTLS10 or tls.VersionTLS11 is selected.
The current list of supported TLS versions is as follows:
We should do the following:
tls.VersionSSL30from the maptls.VersionTLS13to the maptls.VersionTLS10ortls.VersionTLS11is selected.