Home | History | Annotate | Download | only in ssl

Lines Matching full:certificate

1090     /* Determine whether to request a client certificate. */
1092 /* Only request a certificate if Channel ID isn't negotiated. */
1097 /* Plain PSK forbids Certificate and CertificateRequest. */
2031 * CertificateVerify is required if and only if there's a client certificate.
2050 /* Filter out unsupported certificate types. */
2181 CBS certificate;
2184 if (!CBS_get_u24_length_prefixed(&certificate_list, &certificate)) {
2191 /* If this is the first certificate, and we don't want to keep peer
2194 SHA256_Update(&sha256, CBS_data(&certificate), CBS_len(&certificate));
2200 data = CBS_data(&certificate);
2201 x = d2i_X509(NULL, &data, CBS_len(&certificate));
2207 if (data != CBS_data(&certificate) + CBS_len(&certificate)) {
2228 /* Fail for TLS only if we required a certificate */
2236 /* No client certificate so digest cached records */
2268 * certificate, while we do include it in s3_clnt.c */