Home
last modified time | relevance | path

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

/third_party/curl/lib/vtls/
Dopenssl.c869 BIO *cert_bio = NULL; in cert_stuff() local
874 cert_bio = BIO_new_mem_buf(cert_blob->data, (int)(cert_blob->len)); in cert_stuff()
875 if(!cert_bio) { in cert_stuff()
885 cert_bio = BIO_new(BIO_s_file()); in cert_stuff()
886 if(!cert_bio) { in cert_stuff()
895 if(BIO_read_filename(cert_bio, cert_file) <= 0) { in cert_stuff()
897 BIO_free(cert_bio); in cert_stuff()
902 p12 = d2i_PKCS12_bio(cert_bio, NULL); in cert_stuff()
903 BIO_free(cert_bio); in cert_stuff()