/third_party/node/test/parallel/ |
D | test-tls-client-auth.js | 15 function checkServerIdentity(hostname, cert) { function 37 checkServerIdentity, property 54 checkServerIdentity, property 71 checkServerIdentity, property 90 checkServerIdentity, property 119 checkServerIdentity, property 138 checkServerIdentity, property 157 checkServerIdentity, property 174 checkServerIdentity, property 191 checkServerIdentity, property [all …]
|
D | test-x509-escaping-revert-CVE-2021-44532.js | 113 checkServerIdentity: (hostname, peerCert) => { method 226 checkServerIdentity: (hostname, peerCert) => { method 264 tls.checkServerIdentity('example.com', { 287 const err = tls.checkServerIdentity(hostname, { subjectaltname: san });
|
D | test-x509-escaping.js | 135 checkServerIdentity: (hostname, peerCert) => { method 245 checkServerIdentity: (hostname, peerCert) => { method 354 checkServerIdentity: (hostname, peerCert) => { method 394 tls.checkServerIdentity('example.com', { 417 const err = tls.checkServerIdentity(hostname, { subjectaltname: san });
|
D | test-tls-multi-key.js | 156 checkServerIdentity: (_, c) => assert.strictEqual(c.subject.CN, eccCN), 175 checkServerIdentity: (_, c) => assert.strictEqual(c.subject.CN, rsaCN),
|
D | test-tls-ca-concat.js | 14 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-psk-errors.js | 27 checkServerIdentity: () => {}, method
|
D | test-tls-client-renegotiation-13.js | 17 checkServerIdentity: common.mustCall(), property
|
D | test-revert-CVE-2021-44531.js | 59 const err = tls.checkServerIdentity(test.host, test.cert);
|
D | test-tls-env-extra-ca.js | 18 checkServerIdentity: common.mustCall(), property
|
D | test-tls-cert-chains-in-ca.js | 20 checkServerIdentity: (servername, cert) => { }, method
|
D | test-https-client-checkServerIdentity.js | 61 checkServerIdentity: function(host, cert) { method
|
D | test-tls-enable-trace.js | 45 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-cert-chains-concat.js | 15 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-enable-keylog-cli.js | 41 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-enable-trace-cli.js | 49 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-set-sigalgs.js | 23 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-psk-circuit.js | 35 checkServerIdentity: () => {}, method
|
D | test-tls-set-ciphers.js | 21 checkServerIdentity: (servername, cert) => { }, method
|
D | test-tls-check-server-identity.js | 333 const err = tls.checkServerIdentity(test.host, test.cert);
|
D | test-tls-min-max-version.js | 23 checkServerIdentity: (servername, cert) => { }, method
|
/third_party/node/test/sequential/ |
D | test-tls-psk-client.js | 73 checkServerIdentity: () => {}, method
|
/third_party/node/lib/ |
D | tls.js | 267 exports.checkServerIdentity = function checkServerIdentity(hostname, cert) { function
|
D | _tls_wrap.js | 1525 verifyError = options.checkServerIdentity(hostname, cert); 1591 checkServerIdentity: tls.checkServerIdentity, property 1599 assert(typeof options.checkServerIdentity === 'function');
|
/third_party/node/doc/api/ |
D | https.md | 385 checkServerIdentity: function(host, cert) { 387 const err = tls.checkServerIdentity(host, cert);
|
D | tls.md | 1333 ## `tls.checkServerIdentity(hostname, cert)` 1354 the `options.checkServerIdentity` option passed to `tls.connect()`. The 1355 overwriting function can call `tls.checkServerIdentity()` of course, to augment 1365 `options.checkServerIdentity` function that implements the desired behavior. 1449 It will be necessary to provide a custom `tls.checkServerIdentity()` 1468 * `checkServerIdentity(servername, cert)` {Function} A callback function 1469 to be used (instead of the builtin `tls.checkServerIdentity()` function) 1523 checkServerIdentity: () => { return null; },
|