Home
last modified time | relevance | path

Searched refs:biobuf (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/_ssl/
Dcert.c134 BIO *biobuf; in _x509name_print() local
136 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()
/third_party/python/Modules/
D_ssl.c1182 BIO *biobuf = NULL; in _get_peer_alt_names() local
1191 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 …]