Skip to content

Commit 050bbf0

Browse files
committed
TLS use RC4-SHA by default
1 parent d0e84b0 commit 050bbf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tls.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ function Server(/* [options], listener */) {
726726
secureProtocol: self.secureProtocol,
727727
crl: self.crl
728728
});
729-
//creds.context.setCiphers('RC4-SHA:AES128-SHA:AES256-SHA');
729+
creds.context.setCiphers('RC4-SHA:AES128-SHA:AES256-SHA');
730730

731731
var pair = new SecurePair(creds,
732732
true,

0 commit comments

Comments
 (0)