-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
doc: update SSL/TLS version references #9822
Comments
mscdex
added
doc
Issues and PRs related to the documentations.
tls
Issues and PRs related to the tls subsystem.
labels
Nov 28, 2016
Yep, and the tls.client example shouldn't claim to implement an "echo server" :-(. I'd like to move the entire example to the top of the TLS page, de-duplicate it, and provide a clearer description of what client authentication is, and how to enable it. |
mscdex
changed the title
doc: update TLS protocol version example
doc: update SSL/TLS version references
Nov 28, 2016
@nodejs/documentation |
jasnell
added a commit
to jasnell/node
that referenced
this issue
Oct 19, 2018
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since node no longer supports SSLv3 (at least out of the box, not sure offhand about when using node with shared openssl), it is probably a good idea to remove references to SSLv3 in the
tls
documentation. For example:The
secureProtocol
option examples intls.connect()
andtls.createServer()
currently useSSLv3_method
. We should probably change this to something likeTLSv1_method
. Also, it might be good to surround the name inside the backticks with single quotes since it is a string value.tlsSocket.getProtocol()
referencesSSLv3
as a valid example return value. If using a shared openssl does not change things, this should simply be removed from the list of example return values. The list of values should probably also include single quotes inside the backticks as well.The text was updated successfully, but these errors were encountered: