Home
last modified time | relevance | path

Searched refs:checkServerIdentity (Results 1 – 25 of 35) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-tls-client-auth.js15 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 …]
Dtest-x509-escaping-revert-CVE-2021-44532.js113 checkServerIdentity: (hostname, peerCert) => { method
226 checkServerIdentity: (hostname, peerCert) => { method
264 tls.checkServerIdentity('example.com', {
287 const err = tls.checkServerIdentity(hostname, { subjectaltname: san });
Dtest-x509-escaping.js135 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 });
Dtest-tls-multi-key.js156 checkServerIdentity: (_, c) => assert.strictEqual(c.subject.CN, eccCN),
175 checkServerIdentity: (_, c) => assert.strictEqual(c.subject.CN, rsaCN),
Dtest-tls-ca-concat.js14 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-psk-errors.js27 checkServerIdentity: () => {}, method
Dtest-tls-client-renegotiation-13.js17 checkServerIdentity: common.mustCall(), property
Dtest-revert-CVE-2021-44531.js59 const err = tls.checkServerIdentity(test.host, test.cert);
Dtest-tls-env-extra-ca.js18 checkServerIdentity: common.mustCall(), property
Dtest-tls-cert-chains-in-ca.js20 checkServerIdentity: (servername, cert) => { }, method
Dtest-https-client-checkServerIdentity.js61 checkServerIdentity: function(host, cert) { method
Dtest-tls-enable-trace.js45 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-cert-chains-concat.js15 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-enable-keylog-cli.js41 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-enable-trace-cli.js49 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-set-sigalgs.js23 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-psk-circuit.js35 checkServerIdentity: () => {}, method
Dtest-tls-set-ciphers.js21 checkServerIdentity: (servername, cert) => { }, method
Dtest-tls-check-server-identity.js333 const err = tls.checkServerIdentity(test.host, test.cert);
Dtest-tls-min-max-version.js23 checkServerIdentity: (servername, cert) => { }, method
/third_party/node/test/sequential/
Dtest-tls-psk-client.js73 checkServerIdentity: () => {}, method
/third_party/node/lib/
Dtls.js267 exports.checkServerIdentity = function checkServerIdentity(hostname, cert) { function
D_tls_wrap.js1525 verifyError = options.checkServerIdentity(hostname, cert);
1591 checkServerIdentity: tls.checkServerIdentity, property
1599 assert(typeof options.checkServerIdentity === 'function');
/third_party/node/doc/api/
Dhttps.md385 checkServerIdentity: function(host, cert) {
387 const err = tls.checkServerIdentity(host, cert);
Dtls.md1333 ## `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; },

12