-
Notifications
You must be signed in to change notification settings - Fork 367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ssl3.0 and TLS 1.3 #193
Comments
Yes, time to add TLS 1.3 To do:
|
Hmm, there's no easy way to "Remove SSL 3 entirely, when built with Go 1.14 and higher." btw, TLS 1.3 adds some new ciphersuites, but these can't be configured. Assuming that they can be used with older TLS versions |
Actually, may be able to just use the Another issue is that it seems like Travis CI broke for Go 1.10 and 1.9, will remove these from the tests. |
- adds TLS 1.3 and new cipher-suites as config options - remove SSLv3 and the TLS_FALLBACK_SCSV ciphersuite from the sample configuration - removes SSLv3 and the TLS_FALLBACK_SCSV ciphersuite when building with Go 1.14 or above - remove Go 1.10 and Go 1.9 from Travis CI tests, add Go 1.13
- adds TLS 1.3 and new cipher-suites as config options - remove SSLv3 and the TLS_FALLBACK_SCSV ciphersuite from the sample configuration - removes SSLv3 and the TLS_FALLBACK_SCSV ciphersuite when building with Go 1.14 or above - remove Go 1.10 and Go 1.9 from Travis CI tests, add Go 1.13
Is it correct to assume that we do not support TLS 1.3 at the moment but do support ssl3.0?
config.go:127:1
Shall we remove ssl3.0 as it will be deprecated in Go 1.14 and is not secure?
We also have to add TLS 1.3 :-)
The text was updated successfully, but these errors were encountered: