Searched refs:certbytes (Results 1 – 2 of 2) sorted by relevance
| /freebsd/crypto/openssl/ssl/statem/ |
| H A D | statem_srvr.c | 3648 const unsigned char *certstart, *certbytes; in tls_process_client_certificate() local 3694 || !PACKET_get_bytes(&spkt, &certbytes, l)) { in tls_process_client_certificate() 3699 certstart = certbytes; in tls_process_client_certificate() 3705 if (d2i_X509(&x, (const unsigned char **)&certbytes, l) == NULL) { in tls_process_client_certificate() 3710 if (certbytes != (certstart + l)) { in tls_process_client_certificate()
|
| H A D | statem_clnt.c | 1999 const unsigned char *certstart, *certbytes; in tls_process_server_certificate() local 2027 || !PACKET_get_bytes(pkt, &certbytes, cert_len)) { in tls_process_server_certificate() 2032 certstart = certbytes; in tls_process_server_certificate() 2038 if (d2i_X509(&x, (const unsigned char **)&certbytes, in tls_process_server_certificate() 2045 if (certbytes != (certstart + cert_len)) { in tls_process_server_certificate()
|