Lines Matching refs:cert
807 // Clients (!isServer) always request a cert, servers request a client cert
1121 // It's not a peer cert, but the formatting is identical.
1130 const cert = this._handle?.getPeerX509Certificate();
1131 return cert ? new InternalX509Certificate(cert) : undefined;
1135 const cert = this._handle?.getX509Certificate();
1136 return cert ? new InternalX509Certificate(cert) : undefined;
1245 // cert from the client. This is common for most HTTPS servers. The browser
1250 // 2. The server sends a cert to the client and requests that the client
1251 // also send it a cert. The client knows who the server is and the server is
1283 // - cert: string.
1392 if (options.cert)
1393 this.cert = options.cert;
1395 this.cert = undefined;
1475 cert: this.cert,
1529 if (options.cert) this.cert = options.cert;
1668 const cert = this.getPeerCertificate(true);
1669 verifyError = options.checkServerIdentity(hostname, cert);