/openssl-master/test/testutil/ |
A D | basic_output.c | 30 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 D | load.c | 23 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 D | server.c | 571 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 D | cms.c | 36 in = BIO_new(BIO_s_mem()); in FuzzerTestOneInput() 40 BIO *out = BIO_new(BIO_s_null()); in FuzzerTestOneInput()
|
A D | client.c | 73 in = BIO_new(BIO_s_mem()); in FuzzerTestOneInput() 74 out = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
|
A D | asn1.c | 219 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 D | asn1parse.c | 26 bio_out = BIO_new(BIO_s_null()); /* output will be ignored */ in FuzzerInitialize()
|
/openssl-master/test/ |
A D | bio_enc_test.c | 53 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 D | bio_memleak_test.c | 24 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 D | servername_test.c | 122 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 D | bio_prefix_text.c | 108 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 D | pemtest.c | 35 BIO *b = BIO_new(BIO_s_mem()); in test_b64() 65 BIO *b = BIO_new(BIO_s_mem()); in test_invalid()
|
A D | http_test.c | 116 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 D | dtlstest.c | 81 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 D | clienthellotest.c | 172 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 D | BIO_new.pod | 5 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 D | BIO_f_md.pod | 83 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 D | a_i2d_fp.c | 23 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 D | lh_stats.c | 28 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 D | dsa_prn.c | 27 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 D | sconnect.c | 63 ssl_bio = BIO_new(BIO_f_ssl()); in main() 67 out = BIO_new(BIO_s_connect()); in main()
|
/openssl-master/crypto/ec/ |
A D | eck_prn.c | 26 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 D | bio.pod | 41 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 D | ssl_rsa_legacy.c | 49 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 D | dh_prn.c | 27 if ((b = BIO_new(BIO_s_file())) == NULL) { in DHparams_print_fp()
|