-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
128 additions
and
127 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,8 @@ const { | |
ArrayPrototypeFilter, | ||
ArrayPrototypeForEach, | ||
ArrayPrototypeJoin, | ||
ArrayPrototypePush, | ||
StringPrototypeIndexOf, | ||
StringPrototypeSlice, | ||
StringPrototypeSplit, | ||
StringPrototypeStartsWith, | ||
ObjectCreate, | ||
} = primordials; | ||
|
||
const { | ||
|
@@ -42,28 +38,6 @@ const { | |
}, | ||
} = internalBinding('constants'); | ||
|
||
// Example: | ||
// C=US\nST=CA\nL=SF\nO=Joyent\nOU=Node.js\nCN=ca1\[email protected] | ||
function parseCertString(s) { | ||
const out = ObjectCreate(null); | ||
ArrayPrototypeForEach(StringPrototypeSplit(s, '\n'), (part) => { | ||
const sepIndex = StringPrototypeIndexOf(part, '='); | ||
if (sepIndex > 0) { | ||
const key = StringPrototypeSlice(part, 0, sepIndex); | ||
const value = StringPrototypeSlice(part, sepIndex + 1); | ||
if (key in out) { | ||
if (!ArrayIsArray(out[key])) { | ||
out[key] = [out[key]]; | ||
} | ||
ArrayPrototypePush(out[key], value); | ||
} else { | ||
out[key] = value; | ||
} | ||
} | ||
}); | ||
return out; | ||
} | ||
|
||
function getDefaultEcdhCurve() { | ||
// We do it this way because DEFAULT_ECDH_CURVE can be | ||
// changed by users, so we need to grab the current | ||
|
@@ -340,5 +314,4 @@ function configSecureContext(context, options = {}, name = 'options') { | |
|
||
module.exports = { | ||
configSecureContext, | ||
parseCertString, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
'use strict'; | ||
|
||
const EventEmitter = require('events'); | ||
const { Duplex } = require('stream'); | ||
const internalUtil = require('internal/util'); | ||
|
||
const { | ||
ArrayIsArray, | ||
ArrayPrototypeForEach, | ||
ArrayPrototypePush, | ||
StringPrototypeIndexOf, | ||
StringPrototypeSlice, | ||
StringPrototypeSplit, | ||
ObjectCreate, | ||
Symbol, | ||
ReflectConstruct, | ||
} = primordials; | ||
|
||
const kCallback = Symbol('Callback'); | ||
const kOtherSide = Symbol('Other'); | ||
|
||
class DuplexSocket extends Duplex { | ||
constructor() { | ||
super(); | ||
this[kCallback] = null; | ||
this[kOtherSide] = null; | ||
} | ||
|
||
_read() { | ||
const callback = this[kCallback]; | ||
if (callback) { | ||
this[kCallback] = null; | ||
callback(); | ||
} | ||
} | ||
|
||
_write(chunk, encoding, callback) { | ||
if (chunk.length === 0) { | ||
process.nextTick(callback); | ||
} else { | ||
this[kOtherSide].push(chunk); | ||
this[kOtherSide][kCallback] = callback; | ||
} | ||
} | ||
|
||
_final(callback) { | ||
this[kOtherSide].on('end', callback); | ||
this[kOtherSide].push(null); | ||
} | ||
} | ||
|
||
class DuplexPair { | ||
constructor() { | ||
this.socket1 = new DuplexSocket(); | ||
this.socket2 = new DuplexSocket(); | ||
this.socket1[kOtherSide] = this.socket2; | ||
this.socket2[kOtherSide] = this.socket1; | ||
} | ||
} | ||
|
||
class SecurePair extends EventEmitter { | ||
constructor(secureContext = exports.createSecureContext(), | ||
isServer = false, | ||
requestCert = !isServer, | ||
rejectUnauthorized = false, | ||
options = {}) { | ||
super(); | ||
const { socket1, socket2 } = new DuplexPair(); | ||
|
||
this.server = options.server; | ||
this.credentials = secureContext; | ||
|
||
this.encrypted = socket1; | ||
this.cleartext = new exports.TLSSocket(socket2, { | ||
secureContext, | ||
isServer, | ||
requestCert, | ||
rejectUnauthorized, | ||
...options | ||
}); | ||
this.cleartext.once('secure', () => this.emit('secure')); | ||
} | ||
|
||
destroy() { | ||
this.cleartext.destroy(); | ||
this.encrypted.destroy(); | ||
} | ||
} | ||
|
||
// Example: | ||
// C=US\nST=CA\nL=SF\nO=Joyent\nOU=Node.js\nCN=ca1\[email protected] | ||
function parseCertString(s) { | ||
const out = ObjectCreate(null); | ||
ArrayPrototypeForEach(StringPrototypeSplit(s, '\n'), (part) => { | ||
const sepIndex = StringPrototypeIndexOf(part, '='); | ||
if (sepIndex > 0) { | ||
const key = StringPrototypeSlice(part, 0, sepIndex); | ||
const value = StringPrototypeSlice(part, sepIndex + 1); | ||
if (key in out) { | ||
if (!ArrayIsArray(out[key])) { | ||
out[key] = [out[key]]; | ||
} | ||
ArrayPrototypePush(out[key], value); | ||
} else { | ||
out[key] = value; | ||
} | ||
} | ||
}); | ||
return out; | ||
} | ||
|
||
exports.parseCertString = internalUtil.deprecate( | ||
parseCertString, | ||
'tls.parseCertString() is deprecated. ' + | ||
'Please use querystring.parse() instead.', | ||
'DEP0076'); | ||
|
||
exports.createSecurePair = internalUtil.deprecate( | ||
function createSecurePair(...args) { | ||
return ReflectConstruct(SecurePair, args); | ||
}, | ||
'tls.createSecurePair() is deprecated. Please use ' + | ||
'tls.TLSSocket instead.', 'DEP0064'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters