Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-01-11 03:53:20 +0300
committerBen Noordhuis <info@bnoordhuis.nl>2015-01-11 18:07:45 +0300
commit26dd9e15bb9e913af38473a74e2a1049c21df29b (patch)
tree5220a842f45f490372a5a6d5390efa8152f35e82 /doc
parent3ecad1d542fd44a3638d8d8397eeb59f7252b1d7 (diff)
build,src: remove sslv2 support
SSLv2 has been deprecated and known broken for nearly twenty years now. I made SSLv2 support opt-in well over a year ago in commit 39aa894 and now this commit removes it entirely. PR-URL: https://github.com/iojs/io.js/pull/290 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Rod Vagg <rod@vagg.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/tls.markdown4
1 files changed, 0 insertions, 4 deletions
diff --git a/doc/api/tls.markdown b/doc/api/tls.markdown
index 7fcafb9be31..11cea446666 100644
--- a/doc/api/tls.markdown
+++ b/doc/api/tls.markdown
@@ -184,10 +184,6 @@ automatically set as a listener for the [secureConnection][] event. The
use this option in conjunction with the `ciphers` option to mitigate
BEAST attacks.
- Note: If SSLv2 is used, the server will send its list of preferences to the
- client, and the client chooses the cipher. Support for SSLv2 is disabled
- unless node.js was configured with `./configure --with-sslv2`.
-
- `requestCert`: If `true` the server will request a certificate from
clients that connect and attempt to verify that certificate. Default:
`false`.