• Home
  • Raw
  • Download

Lines Matching refs:biobuf

1239     BIO *biobuf = NULL;  in _get_peer_alt_names()  local
1248 biobuf = BIO_new(BIO_s_mem()); in _get_peer_alt_names()
1249 if (biobuf == NULL) { in _get_peer_alt_names()
1378 (void) BIO_reset(biobuf); in _get_peer_alt_names()
1379 GENERAL_NAME_print(biobuf, name); in _get_peer_alt_names()
1380 len = BIO_gets(biobuf, buf, sizeof(buf)-1); in _get_peer_alt_names()
1421 BIO_free(biobuf); in _get_peer_alt_names()
1432 if (biobuf != NULL) in _get_peer_alt_names()
1433 BIO_free(biobuf); in _get_peer_alt_names()
1561 BIO *biobuf = NULL; in _decode_certificate() local
1608 biobuf = BIO_new(BIO_s_mem()); in _decode_certificate()
1609 if (biobuf == NULL) { in _decode_certificate()
1614 (void) BIO_reset(biobuf); in _decode_certificate()
1617 i2a_ASN1_INTEGER(biobuf, serialNumber); in _decode_certificate()
1618 len = BIO_gets(biobuf, buf, sizeof(buf)-1); in _decode_certificate()
1632 (void) BIO_reset(biobuf); in _decode_certificate()
1634 ASN1_TIME_print(biobuf, notBefore); in _decode_certificate()
1635 len = BIO_gets(biobuf, buf, sizeof(buf)-1); in _decode_certificate()
1649 (void) BIO_reset(biobuf); in _decode_certificate()
1651 ASN1_TIME_print(biobuf, notAfter); in _decode_certificate()
1652 len = BIO_gets(biobuf, buf, sizeof(buf)-1); in _decode_certificate()
1715 BIO_free(biobuf); in _decode_certificate()
1719 if (biobuf != NULL) in _decode_certificate()
1720 BIO_free(biobuf); in _decode_certificate()
3876 BIO *biobuf = NULL; in _add_ca_certs() local
3892 biobuf = BIO_new_mem_buf(data, (int)len); in _add_ca_certs()
3893 if (biobuf == NULL) { in _add_ca_certs()
3906 cert = d2i_X509_bio(biobuf, NULL); in _add_ca_certs()
3908 cert = PEM_read_bio_X509(biobuf, NULL, in _add_ca_certs()
3951 BIO_free(biobuf); in _add_ca_certs()