Home
last modified time | relevance | path

Searched refs:bio (Results 101 – 125 of 196) sorted by relevance

12345678

/openssl/providers/implementations/storemgmt/
H A Dfile_store.c205 BIO *bio; in file_open() local
282 else if ((bio = BIO_new_file(path, "rb")) == NULL in file_open()
283 || (ctx = file_open_stream(bio, uri, provctx)) == NULL) in file_open()
284 BIO_free_all(bio); in file_open()
/openssl/apps/
H A Ds_server.c2304 static void print_stats(BIO *bio, SSL_CTX *ssl_ctx) in print_stats() argument
2306 BIO_printf(bio, "%4ld items in the session cache\n", in print_stats()
2308 BIO_printf(bio, "%4ld client connects (SSL_connect())\n", in print_stats()
2312 BIO_printf(bio, "%4ld client connects that finished\n", in print_stats()
2314 BIO_printf(bio, "%4ld server accepts (SSL_accept())\n", in print_stats()
2318 BIO_printf(bio, "%4ld server accepts that finished\n", in print_stats()
2321 BIO_printf(bio, "%4ld session cache misses\n", in print_stats()
2323 BIO_printf(bio, "%4ld session cache timeouts\n", in print_stats()
2325 BIO_printf(bio, "%4ld callback cache hits\n", in print_stats()
2348 BIO_set_callback_arg(bio, (char *)bio_s_out); in count_reads_callback()
[all …]
/openssl/doc/man3/
H A DOSSL_trace_set_channel.pod17 void OSSL_trace_set_channel(int category, BIO *bio);
49 by attaching the B<BIO> I<bio> object as (simple) trace channel.
272 BIO *bio = vdata;
291 BIO_printf(bio, "%s TRACE[%s]:%lx\n",
294 return (size_t)BIO_puts(bio, buf);
H A DBIO_meth_new.pod17 #include <openssl/bio.h>
83 of the various BIO capabilities. See the L<bio(7)> page for more information.
90 standard OpenSSL provided BIO types is provided in F<< <openssl/bio.h> >>.
177 L<bio(7)>, L<BIO_find_type(3)>, L<BIO_ctrl(3)>, L<BIO_read_ex(3)>, L<BIO_new(3)>
H A DSMIME_read_CMS.pod11 CMS_ContentInfo *SMIME_read_CMS_ex(BIO *bio, int flags, BIO **bcont,
21 If cleartext signing is used then the content is saved in a memory bio which is
H A DBIO_f_null.pod9 #include <openssl/bio.h>
H A DSSL_get_rbio.pod38 L<SSL_set_bio(3)>, L<ssl(7)> , L<bio(7)>
H A DBIO_f_buffer.pod15 #include <openssl/bio.h>
88 L<bio(7)>,
H A DBIO_push.pod9 #include <openssl/bio.h>
83 L<bio(7)>
H A DSSL_get_fd.pod42 L<SSL_set_fd(3)>, L<ssl(7)> , L<bio(7)>
H A DOSSL_CMP_log_open.pod45 int OSSL_CMP_print_to_bio(BIO *bio, const char *component, const char *file,
95 severity level, and log message or error queue message to the given I<bio>.
/openssl/ssl/record/methods/
H A Drecmethod_local.h87 BIO *bio; member
283 int tls_set1_bio(OSSL_RECORD_LAYER *rl, BIO *bio);
/openssl/include/openssl/
H A Dstore.h132 OSSL_STORE_CTX *OSSL_STORE_attach(BIO *bio, const char *scheme,
296 (const OSSL_STORE_LOADER *loader, BIO *bio,
/openssl/crypto/encode_decode/
H A Dencoder_lib.c25 BIO *bio; member
51 data.bio = out; in OSSL_ENCODER_to_bio()
626 current_out = data->bio; in encoder_process()
/openssl/providers/fips/
H A Dself_test.c180 static int verify_integrity(OSSL_CORE_BIO *bio, OSSL_FUNC_BIO_read_ex_fn read_ex_cb, in verify_integrity() argument
209 status = read_ex_cb(bio, buf, sizeof(buf), &bytes_read); in verify_integrity()
/openssl/test/helpers/
H A Dpkcs12.c41 static PKCS12 *from_bio_p12(BIO *bio, const PKCS12_ENC *mac);
209 static PKCS12 *from_bio_p12(BIO *bio, const PKCS12_ENC *mac) in from_bio_p12() argument
219 p12 = d2i_PKCS12_bio(bio, &p12); in from_bio_p12()
220 BIO_free(bio); in from_bio_p12()
/openssl/test/
H A Devp_libctx_test.c231 BIO *bio = NULL; in dhx_cert_load() local
301 if (!TEST_ptr(bio = BIO_new_mem_buf(dhx_cert, sizeof(dhx_cert))) in dhx_cert_load()
303 || !TEST_ptr(d2i_X509_bio(bio, &cert))) in dhx_cert_load()
308 BIO_free(bio); in dhx_cert_load()
/openssl/crypto/cms/
H A Dcms_sd.c1058 BIO *bio = NULL; in CMS_SignedData_verify() local
1068 if ((bio = BIO_new(BIO_s_mem())) == NULL) in CMS_SignedData_verify()
1079 res = CMS_verify(ci, scerts, store, detached_data, bio, flags); in CMS_SignedData_verify()
1086 BIO_free(bio); in CMS_SignedData_verify()
1087 bio = NULL; in CMS_SignedData_verify()
1089 return bio; in CMS_SignedData_verify()
H A Dcms_env.c251 BIO *bio = NULL; in CMS_EnvelopedData_decrypt() local
260 || (bio = BIO_new(BIO_s_mem())) == NULL) in CMS_EnvelopedData_decrypt()
269 res = CMS_decrypt(ci, pkey, cert, detached_data, bio, flags); in CMS_EnvelopedData_decrypt()
276 BIO_free(bio); in CMS_EnvelopedData_decrypt()
277 bio = NULL; in CMS_EnvelopedData_decrypt()
279 return bio; in CMS_EnvelopedData_decrypt()
/openssl/doc/man7/
H A Dbio.pod5 bio - Basic I/O abstraction
11 #include <openssl/bio.h>
H A Dprovider-storemgmt.pod18 void *OSSL_FUNC_store_attach(void *provctx, OSSL_CORE_BIO *bio);
58 OSSL_CORE_BIO * bio);
81 B<BIO> I<bio> attached. This is an alternative to using a URI to find storage,
/openssl/crypto/conf/
H A Dconf_def.c848 BIO *bio; in get_next_file() local
874 bio = BIO_new_file(newpath, "r"); in get_next_file()
877 if (bio != NULL) in get_next_file()
878 return bio; in get_next_file()
/openssl/crypto/bio/
H A Dbio_local.h33 # error openssl/bio.h included before bio_local.h
/openssl/ssl/record/
H A Drecordmethod.h266 int (*set1_bio)(OSSL_RECORD_LAYER *rl, BIO *bio);
/openssl/ssl/
H A Dssl_lib.c1559 BIO *bio = NULL; in SSL_set_fd() local
1561 bio = BIO_new(BIO_s_socket()); in SSL_set_fd()
1563 if (bio == NULL) { in SSL_set_fd()
1568 SSL_set_bio(s, bio, bio); in SSL_set_fd()
1591 if (bio == NULL) { in SSL_set_wfd()
1596 SSL_set0_wbio(s, bio); in SSL_set_wfd()
1621 if (bio == NULL) { in SSL_set_rfd()
1626 SSL_set0_rbio(s, bio); in SSL_set_rfd()
4306 BIO *bio; in SSL_get_error() local
4328 bio = SSL_get_rbio(s); in SSL_get_error()
[all …]

Completed in 131 milliseconds

12345678