From 050bbf0bc482178b4b5f4c81c50e22f6bbcb6b13 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 13 Apr 2011 18:37:49 -0700 Subject: [PATCH] TLS use RC4-SHA by default --- lib/tls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tls.js b/lib/tls.js index 547e9395c6..0adba535e8 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -726,7 +726,7 @@ function Server(/* [options], listener */) { secureProtocol: self.secureProtocol, crl: self.crl }); - //creds.context.setCiphers('RC4-SHA:AES128-SHA:AES256-SHA'); + creds.context.setCiphers('RC4-SHA:AES128-SHA:AES256-SHA'); var pair = new SecurePair(creds, true,