-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Description
- Version: v6.x+ ?
- Platform: all
- Subsystem: doc
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
secureProtocoloption 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()referencesSSLv3as 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.