Home
last modified time | relevance | path

Searched refs:BIO_new (Results 1 – 25 of 129) sorted by relevance

123456

/openssl-master/test/testutil/
A Dbasic_output.c30 tap_out = BIO_push(BIO_new(BIO_f_linebuffer()), tap_out); in test_open_streams()
31 tap_err = BIO_push(BIO_new(BIO_f_linebuffer()), tap_err); in test_open_streams()
33 tap_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out); in test_open_streams()
34 tap_err = BIO_push(BIO_new(BIO_f_prefix()), tap_err); in test_open_streams()
36 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out); in test_open_streams()
37 bio_err = BIO_push(BIO_new(BIO_f_prefix()), tap_err); in test_open_streams()
A Dload.c23 if (!TEST_ptr(file) || !TEST_ptr(bio = BIO_new(BIO_s_file()))) in load_cert_pem()
74 if (!TEST_ptr(file) || !TEST_ptr(bio = BIO_new(BIO_s_file()))) in load_pkey_pem()
/openssl-master/fuzz/
A Dserver.c571 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
583 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
595 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
607 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
618 in = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
619 out = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
A Dcms.c36 in = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
40 BIO *out = BIO_new(BIO_s_null()); in FuzzerTestOneInput()
A Dclient.c73 in = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
74 out = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
A Dasn1.c219 BIO *bio = BIO_new(BIO_s_null()); \
236 BIO *bio = BIO_new(BIO_s_null()); \
252 BIO *bio = BIO_new(BIO_s_null()); \
269 BIO *bio = BIO_new(BIO_s_null()); \
309 BIO *bio = BIO_new(BIO_s_null()); in FuzzerTestOneInput()
A Dasn1parse.c26 bio_out = BIO_new(BIO_s_null()); /* output will be ignored */ in FuzzerInitialize()
/openssl-master/test/
A Dbio_enc_test.c53 b = BIO_new(BIO_f_cipher()); in do_bio_cipher()
62 b = BIO_new(BIO_f_cipher()); in do_bio_cipher()
89 b = BIO_new(BIO_f_cipher()); in do_bio_cipher()
110 b = BIO_new(BIO_f_cipher()); in do_bio_cipher()
125 b = BIO_new(BIO_f_cipher()); in do_bio_cipher()
152 b = BIO_new(BIO_f_cipher()); in do_bio_cipher()
A Dbio_memleak_test.c24 bio = BIO_new(BIO_s_mem()); in test_bio_memleak()
49 bio = BIO_new(BIO_s_mem()); in test_bio_get_mem()
124 bio2 = BIO_new(BIO_s_mem()); in test_bio_rdonly_mem_buf()
154 bio = BIO_new(BIO_s_mem()); in test_bio_rdwr_rdonly()
190 bio = BIO_new(BIO_s_mem()); in test_bio_nonclear_rst()
245 if (!TEST_ptr(bio = BIO_new(BIO_s_mem()))) in test_bio_i2d_ASN1_mime()
255 if (!TEST_ptr(out = BIO_new(BIO_s_mem()))) in test_bio_i2d_ASN1_mime()
A Dservername_test.c122 rbio = BIO_new(BIO_s_mem()); in client_setup_sni_before_state()
123 wbio = BIO_new(BIO_s_mem()); in client_setup_sni_before_state()
171 rbio = BIO_new(BIO_s_mem()); in client_setup_sni_after_state()
172 wbio = BIO_new(BIO_s_mem()); in client_setup_sni_after_state()
A Dbio_prefix_text.c108 BIO *curr = BIO_new(BIO_f_prefix()); in setup_bio_chain()
151 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out); in setup()
152 bio_err = BIO_push(BIO_new(BIO_f_linebuffer()), bio_err); in setup()
A Dpemtest.c35 BIO *b = BIO_new(BIO_s_mem()); in test_b64()
65 BIO *b = BIO_new(BIO_s_mem()); in test_invalid()
A Dhttp_test.c116 BIO *wbio = BIO_new(BIO_s_mem()); in test_http_x509()
117 BIO *rbio = BIO_new(BIO_s_mem()); in test_http_x509()
159 BIO *wbio = BIO_new(BIO_s_mem()); in test_http_keep_alive()
160 BIO *rbio = BIO_new(BIO_s_mem()); in test_http_keep_alive()
A Ddtlstest.c81 c_to_s_fbio = BIO_new(bio_f_tls_dump_filter()); in test_dtls_unprocessed()
214 c_to_s_fbio = BIO_new(bio_f_tls_dump_filter()); in test_dtls_drop_records()
409 rbio = BIO_new(BIO_s_mem()); in test_just_finished()
410 wbio = BIO_new(BIO_s_mem()); in test_just_finished()
A Dclienthellotest.c172 rbio = BIO_new(BIO_s_mem()); in test_client_hello()
173 wbio = BIO_new(BIO_s_mem()); in test_client_hello()
/openssl-master/doc/man3/
A DBIO_new.pod5 BIO_new_ex, BIO_new, BIO_up_ref, BIO_free, BIO_vfree, BIO_free_all
13 BIO *BIO_new(const BIO_METHOD *type);
25 The BIO_new() is the same as BIO_new_ex() except the default library context is
44 BIO_new_ex() and BIO_new() return a newly created BIO or NULL if the call fails.
68 BIO *mem = BIO_new(BIO_s_mem());
A DBIO_f_md.pod83 bio = BIO_new(BIO_s_null());
84 mdtmp = BIO_new(BIO_f_md());
91 mdtmp = BIO_new(BIO_f_md());
104 mdtmp = BIO_new(BIO_f_md());
107 mdtmp = BIO_new(BIO_f_md());
/openssl-master/crypto/asn1/
A Da_i2d_fp.c23 if ((b = BIO_new(BIO_s_file())) == NULL) { in ASN1_i2d_fp()
76 if ((b = BIO_new(BIO_s_file())) == NULL) { in ASN1_item_i2d_fp()
122 if ((res = BIO_new(BIO_s_mem())) == NULL) in ASN1_item_i2d_mem_bio()
/openssl-master/crypto/lhash/
A Dlh_stats.c28 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_stats()
40 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_node_stats()
52 bp = BIO_new(BIO_s_file()); in OPENSSL_LH_node_usage_stats()
/openssl-master/crypto/dsa/
A Ddsa_prn.c27 if ((b = BIO_new(BIO_s_file())) == NULL) { in DSA_print_fp()
42 if ((b = BIO_new(BIO_s_file())) == NULL) { in DSAparams_print_fp()
/openssl-master/demos/bio/
A Dsconnect.c63 ssl_bio = BIO_new(BIO_f_ssl()); in main()
67 out = BIO_new(BIO_s_connect()); in main()
/openssl-master/crypto/ec/
A Deck_prn.c26 if ((b = BIO_new(BIO_s_file())) == NULL) { in ECPKParameters_print_fp()
41 if ((b = BIO_new(BIO_s_file())) == NULL) { in EC_KEY_print_fp()
56 if ((b = BIO_new(BIO_s_file())) == NULL) { in ECParameters_print_fp()
/openssl-master/doc/man7/
A Dbio.pod41 BIO_new(). Others (such as file BIOs) need some additional initialization,
59 BIO *mem = BIO_new(BIO_s_mem());
68 L<BIO_find_type(3)>, L<BIO_new(3)>,
/openssl-master/ssl/
A Dssl_rsa_legacy.c49 in = BIO_new(BIO_s_file()); in SSL_use_RSAPrivateKey_file()
131 in = BIO_new(BIO_s_file()); in SSL_CTX_use_RSAPrivateKey_file()
/openssl-master/crypto/dh/
A Ddh_prn.c27 if ((b = BIO_new(BIO_s_file())) == NULL) { in DHparams_print_fp()

Completed in 31 milliseconds

123456