Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit c839d5c

Browse files
daprahamianmbroadst
authored andcommitted
feat(ssl): adding ssl options ciphers and ecdhCurve
1 parent 9b28a1a commit c839d5c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/connection/connection.js

+3
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ var Connection = function(messageHandler, options) {
135135
this.cert = options.cert || null;
136136
this.key = options.key || null;
137137
this.passphrase = options.passphrase || null;
138+
this.ciphers = options.ciphers || null;
139+
this.ecdhCurve = options.ecdhCurve || null;
138140
this.ssl = typeof options.ssl === 'boolean' ? options.ssl : false;
139141
this.rejectUnauthorized =
140142
typeof options.rejectUnauthorized === 'boolean' ? options.rejectUnauthorized : true;
@@ -510,6 +512,7 @@ var legalSslSocketOptions = [
510512
'NPNProtocols',
511513
'ALPNProtocols',
512514
'servername',
515+
'ecdhCurve',
513516
'secureProtocol',
514517
'secureContext',
515518
'session',

0 commit comments

Comments
 (0)