Searched refs:certbytes (Results 1 – 2 of 2) sorted by relevance
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 1777 const unsigned char *certstart, *certbytes; in tls_process_server_certificate() local 1796 || !PACKET_get_bytes(pkt, &certbytes, cert_len)) { in tls_process_server_certificate() 1801 certstart = certbytes; in tls_process_server_certificate() 1808 if (d2i_X509(&x, (const unsigned char **)&certbytes, in tls_process_server_certificate() 1814 if (certbytes != (certstart + cert_len)) { in tls_process_server_certificate()
|
D | statem_srvr.c | 3418 const unsigned char *certstart, *certbytes; in tls_process_client_certificate() local 3452 || !PACKET_get_bytes(&spkt, &certbytes, l)) { in tls_process_client_certificate() 3457 certstart = certbytes; in tls_process_client_certificate() 3463 if (d2i_X509(&x, (const unsigned char **)&certbytes, l) == NULL) { in tls_process_client_certificate() 3468 if (certbytes != (certstart + l)) { in tls_process_client_certificate()
|