Home
last modified time | relevance | path

Searched refs:BIO_push (Results 1 – 25 of 34) sorted by relevance

12

/third_party/openssl/doc/man3/
DBIO_push.pod5 BIO_push, BIO_pop, BIO_set_next - add and remove BIOs from a chain
11 BIO *BIO_push(BIO *b, BIO *next);
17 BIO_push() pushes I<b> on I<next>.
36 The names of these functions are perhaps a little misleading. BIO_push()
40 The process of calling BIO_push() and BIO_pop() on a BIO may have additional
46 BIO_push() returns the head of the chain,
59 BIO_push(b64, f);
63 BIO_push(md2, b64);
64 BIO_push(md1, md2);
DBIO_f_md.pod87 * For BIO_push() we want to append the sink BIO and keep a note of
90 bio = BIO_push(mdtmp, bio);
93 bio = BIO_push(mdtmp, bio);
106 bio = BIO_push(mdtmp, bio);
109 bio = BIO_push(mdtmp, bio);
DBIO_f_base64.pod64 BIO_push(b64, bio);
80 BIO_push(b64, bio);
DBIO_f_ssl.pod46 If a BIO is appended to an SSL BIO using BIO_push() it is automatically
235 sbio = BIO_push(bbio, sbio);
/third_party/openssl/test/
Dbio_enc_test.c56 BIO_push(b, BIO_new_mem_buf(inp, DATA_SIZE)); in do_bio_cipher()
67 BIO_push(b, BIO_new_mem_buf(inp, DATA_SIZE)); in do_bio_cipher()
94 BIO_push(b, BIO_new_mem_buf(inp, DATA_SIZE)); in do_bio_cipher()
114 BIO_push(b, BIO_new_mem_buf(ref, lref)); in do_bio_cipher()
130 BIO_push(b, BIO_new_mem_buf(ref, lref)); in do_bio_cipher()
157 BIO_push(b, BIO_new_mem_buf(ref, lref)); in do_bio_cipher()
Dssltestlib.c795 && !TEST_ptr(s_to_c_bio = BIO_push(s_to_c_fbio, s_to_c_bio))) in create_ssl_objects()
798 && !TEST_ptr(c_to_s_bio = BIO_push(c_to_s_fbio, c_to_s_bio))) in create_ssl_objects()
/third_party/openssl/test/testutil/
Dbasic_output.c25 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out); in test_open_streams()
26 bio_err = BIO_push(BIO_new(BIO_f_linebuffer()), bio_err); in test_open_streams()
28 bio_err = BIO_push(BIO_new(BIO_f_tap()), bio_err); in test_open_streams()
/third_party/openssl/apps/
Denc.c392 wbio = BIO_push(bzl, wbio); in enc_main()
394 rbio = BIO_push(bzl, rbio); in enc_main()
408 wbio = BIO_push(b64, wbio); in enc_main()
410 rbio = BIO_push(b64, rbio); in enc_main()
588 wbio = BIO_push(benc, wbio); in enc_main()
Drand.c97 out = BIO_push(b64, out); in rand_main()
Ds_client.c2140 sbio = BIO_push(test, sbio); in s_client_main()
2206 BIO_push(fbio, sbio); in s_client_main()
2254 BIO_push(fbio, sbio); in s_client_main()
2281 BIO_push(fbio, sbio); in s_client_main()
2373 BIO_push(fbio, sbio); in s_client_main()
2422 BIO_push(fbio, sbio); in s_client_main()
2582 BIO_push(fbio, sbio); in s_client_main()
2618 BIO_push(fbio, sbio); in s_client_main()
Dasn1pars.c200 BIO_push(b64, in); in asn1parse_main()
Ds_server.c2349 sbio = BIO_push(test, sbio); in sv_body()
3010 sbio = BIO_push(test, sbio); in www_body()
3017 BIO_push(io, ssl_bio); in www_body()
3019 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io); in www_body()
3388 BIO_push(io, ssl_bio); in rev_body()
3390 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()), io); in rev_body()
Dapps.c428 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass()
2508 b = BIO_push(BIO_new(BIO_f_linebuffer()), b); in dup_bio_out()
2514 b = BIO_push(BIO_new(prefix_method), b); in dup_bio_out()
2527 b = BIO_push(BIO_new(BIO_f_linebuffer()), b); in dup_bio_err()
Ddgst.c379 inp = BIO_push(bmd, in); in dgst_main()
/third_party/openssl/ssl/
Dbio_ssl.c294 BIO_push(bio, next); in ssl_ctrl()
430 if ((ret = BIO_push(buf, ssl)) == NULL) in BIO_new_buffer_ssl_connect()
449 if ((ret = BIO_push(ssl, con)) == NULL) in BIO_new_ssl_connect()
/third_party/openssl/crypto/pkcs7/
Dpk7_doit.c73 else if (!BIO_push(*pbio, btmp)) { in PKCS7_bio_add_digest()
317 BIO_push(out, btmp); in PKCS7_dataInit()
336 BIO_push(out, bio); in PKCS7_dataInit()
461 BIO_push(out, btmp); in PKCS7_dataDecode()
563 BIO_push(out, etmp); in PKCS7_dataDecode()
580 BIO_push(out, bio); in PKCS7_dataDecode()
Dpk7_smime.c512 if ((bread = BIO_push(tmpbuf, tmpmem)) == NULL) { in PKCS7_decrypt()
/third_party/openssl/demos/bio/
Dsconnect.c77 out = BIO_push(ssl_bio, out); in main()
/third_party/openssl/crypto/bio/
Dbss_acpt.c319 if (!BIO_push(dbio, bio)) in acpt_state()
323 if (BIO_push(b, bio) == NULL) in acpt_state()
Dbio_lib.c582 BIO *BIO_push(BIO *b, BIO *bio) in BIO_push() function
731 BIO_push(eoc, new_bio); in BIO_dup_chain()
/third_party/openssl/crypto/asn1/
Dbio_ndef.c76 out = BIO_push(asn_bio, out); in BIO_new_NDEF()
Dasn_mime.c111 out = BIO_push(b64, out); in B64_write_ASN1()
140 bio = BIO_push(b64, bio); in b64_read_asn1()
499 out = BIO_push(bf, out); in SMIME_crlf_copy()
/third_party/openssl/doc/man7/
Dbio.pod69 L<BIO_push(3)>, L<BIO_read_ex(3)>,
/third_party/openssl/crypto/cms/
Dcms_lib.c99 return BIO_push(cmsbio, cont); in CMS_dataInit()
/third_party/openssl/test/ossl_shim/
Dossl_shim.cc1027 BIO_push(packeted.get(), bio.release()); in DoExchange()
1036 BIO_push(async_scoped.get(), bio.release()); in DoExchange()

12