HomeSort by: relevance | last modified time | path
    Searched defs:certbytes (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/statem/
statem_clnt.c 1999 const unsigned char *certstart, *certbytes; local
2027 || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
2032 certstart = certbytes;
2038 if (d2i_X509(&x, (const unsigned char **)&certbytes,
2045 if (certbytes != (certstart + cert_len)) {
statem_srvr.c 3648 const unsigned char *certstart, *certbytes; local
3694 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3699 certstart = certbytes;
3705 if (d2i_X509(&x, (const unsigned char **)&certbytes, l) == NULL) {
3710 if (certbytes != (certstart + l)) {
  /src/crypto/external/bsd/openssl/dist/ssl/statem/
statem_clnt.c 1777 const unsigned char *certstart, *certbytes; local
1796 || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1801 certstart = certbytes;
1808 if (d2i_X509(&x, (const unsigned char **)&certbytes,
1814 if (certbytes != (certstart + cert_len)) {
statem_srvr.c 3417 const unsigned char *certstart, *certbytes; local
3451 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3456 certstart = certbytes;
3462 if (d2i_X509(&x, (const unsigned char **)&certbytes, l) == NULL) {
3467 if (certbytes != (certstart + l)) {
  /src/crypto/external/bsd/openssl.old/dist/ssl/statem/
statem_clnt.c 1826 const unsigned char *certstart, *certbytes; local
1850 || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1857 certstart = certbytes;
1858 x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len);
1864 if (certbytes != (certstart + cert_len)) {
statem_srvr.c 3597 const unsigned char *certstart, *certbytes; local
3634 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3641 certstart = certbytes;
3642 x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
3648 if (certbytes != (certstart + l)) {

Completed in 38 milliseconds