Searched refs:biobuf (Results 1 – 2 of 2) sorted by relevance
134 BIO *biobuf; in _x509name_print() local136 biobuf = BIO_new(BIO_s_mem()); in _x509name_print()137 if (biobuf == NULL) { in _x509name_print()142 if (X509_NAME_print_ex(biobuf, name, indent, flags) <= 0) { in _x509name_print()144 BIO_free(biobuf); in _x509name_print()147 res = _PySSL_UnicodeFromBIO(state, biobuf, "strict"); in _x509name_print()148 BIO_free(biobuf); in _x509name_print()
1182 BIO *biobuf = NULL; in _get_peer_alt_names() local1191 biobuf = BIO_new(BIO_s_mem()); in _get_peer_alt_names()1192 if (biobuf == NULL) { in _get_peer_alt_names()1368 (void) BIO_reset(biobuf); in _get_peer_alt_names()1369 GENERAL_NAME_print(biobuf, name); in _get_peer_alt_names()1370 len = BIO_gets(biobuf, buf, sizeof(buf)-1); in _get_peer_alt_names()1411 BIO_free(biobuf); in _get_peer_alt_names()1422 if (biobuf != NULL) in _get_peer_alt_names()1423 BIO_free(biobuf); in _get_peer_alt_names()1551 BIO *biobuf = NULL; in _decode_certificate() local[all …]