diff options
author | isaacs <i@izs.me> | 2012-08-22 09:46:07 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-08-22 11:03:14 -0700 |
commit | ee200942dd7af613892883def5ac53862afc9129 (patch) | |
tree | 2075dd44749d15084df0cbe3b9e39c8ac1fae7a4 /lib/tls.js | |
parent | 2e1f2b535e91506a128062ead055da0a9447b17e (diff) | |
download | nodejs-ee200942dd7af613892883def5ac53862afc9129.tar.gz nodejs-ee200942dd7af613892883def5ac53862afc9129.tar.bz2 nodejs-ee200942dd7af613892883def5ac53862afc9129.zip |
lint
Diffstat (limited to 'lib/tls.js')
-rw-r--r-- | lib/tls.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tls.js b/lib/tls.js index aaafd526d..350b5776d 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -30,7 +30,7 @@ var assert = require('assert').ok; var constants = require('constants'); var DEFAULT_CIPHERS = 'ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:' + // TLS 1.2 - 'RC4:HIGH:!MD5:!aNULL:!EDH' // TLS 1.0 + 'RC4:HIGH:!MD5:!aNULL:!EDH'; // TLS 1.0 // Allow {CLIENT_RENEG_LIMIT} client-initiated session renegotiations // every {CLIENT_RENEG_WINDOW} seconds. An error event is emitted if more |