Searched refs:minDHSize (Results 1 – 4 of 4) sorted by relevance
/third_party/node/test/parallel/ |
D | test-tls-client-mindhsize.js | 42 minDHSize: 2048, property 78 [0, -1, -Infinity, NaN].forEach((minDHSize) => { 79 assert.throws(() => tls.connect({ minDHSize }), field 84 [true, false, null, undefined, {}, [], '', '1'].forEach((minDHSize) => { 85 assert.throws(() => tls.connect({ minDHSize }), errMessage); field
|
/third_party/node/lib/ |
D | _tls_wrap.js | 1592 if (ekeyinfo.type === 'DH' && ekeyinfo.size < options.minDHSize) { 1677 minDHSize: 1024, property 1685 assert(typeof options.minDHSize === 'number', 1686 'options.minDHSize is not a number: ' + options.minDHSize); 1687 assert(options.minDHSize > 0, 1689 options.minDHSize);
|
/third_party/node/doc/api/ |
D | tls.md | 1689 * `minDHSize` {number} Minimum size of the DH parameter in bits to accept a 1691 than `minDHSize`, the TLS connection is destroyed and an error is thrown.
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V5.md | 1572 …m/nodejs/node/commit/81522480f1)] - **test**: more regression tests for minDHSize option (Ben Noor… 1616 …bits. This a security consideration to prevent "logjam" attacks. A new `minDHSize` TLS option can … 1739 …b.com/nodejs/node/commit/f72e178a78)] - **(SEMVER-MAJOR)** **tls**: add minDHSize option to tls.co…
|