We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
tls.VersionSSL30
tls.VersionTLS13
tls.VersionTLS10
tls.VersionTLS11
The text was updated successfully, but these errors were encountered:
dcarbone
Successfully merging a pull request may close this issue.
The current list of supported TLS versions is as follows:
We should do the following:
tls.VersionSSL30
from the maptls.VersionTLS13
to the maptls.VersionTLS10
ortls.VersionTLS11
is selected.The text was updated successfully, but these errors were encountered: