Searched refs:cbio (Results 1 – 5 of 5) sorted by relevance
/third_party/openssl/apps/ |
D | ocsp.c | 104 static int send_ocsp_response(BIO *cbio, OCSP_RESPONSE *resp); 118 static OCSP_RESPONSE *query_responder(BIO *cbio, const char *host, 227 BIO *acbio = NULL, *cbio = NULL, *derbio = NULL, *out = NULL; in ocsp_main() local 622 if (!do_responder(&req, &cbio, acbio, req_timeout)) in ocsp_main() 629 send_ocsp_response(cbio, resp); in ocsp_main() 685 if (cbio != NULL) in ocsp_main() 686 send_ocsp_response(cbio, resp); in ocsp_main() 735 if (cbio != NULL) { in ocsp_main() 741 BIO_free_all(cbio); in ocsp_main() 742 cbio = NULL; in ocsp_main() [all …]
|
/third_party/curl/docs/examples/ |
D | cacertinmem.c | 86 BIO *cbio = BIO_new_mem_buf(mypem, sizeof(mypem)); in sslctx_function() local 93 if(!cts || !cbio) { in sslctx_function() 97 inf = PEM_X509_INFO_read_bio(cbio, NULL, NULL, NULL); in sslctx_function() 100 BIO_free(cbio); in sslctx_function() 115 BIO_free(cbio); in sslctx_function()
|
/third_party/openssl/doc/man3/ |
D | BIO_s_connect.pod | 172 BIO *cbio, *out; 176 cbio = BIO_new_connect("localhost:http"); 178 if (BIO_do_connect(cbio) <= 0) { 183 BIO_puts(cbio, "GET / HTTP/1.0\n\n"); 185 len = BIO_read(cbio, tmpbuf, 1024); 190 BIO_free(cbio);
|
D | BIO_s_accept.pod | 182 BIO *abio, *cbio, *cbio2; 201 cbio = BIO_pop(abio); 202 BIO_puts(cbio, "Connection 1: Sending out Data on initial connection\n"); 219 BIO_puts(cbio, "Connection 1: Second connection established\n"); 222 BIO_free(cbio);
|
/third_party/curl/lib/vtls/ |
D | openssl.c | 2527 BIO *cbio = NULL; in load_cacert_from_memory() local 2542 cbio = BIO_new_mem_buf(ca_info_blob->data, (int)ca_info_blob->len); in load_cacert_from_memory() 2543 if(!cbio) in load_cacert_from_memory() 2546 inf = PEM_X509_INFO_read_bio(cbio, NULL, NULL, NULL); in load_cacert_from_memory() 2548 BIO_free(cbio); in load_cacert_from_memory() 2578 BIO_free(cbio); in load_cacert_from_memory()
|