Home
last modified time | relevance | path

Searched refs:corebiometh (Results 1 - 12 of 12) sorted by relevance

/third_party/node/deps/openssl/openssl/providers/common/
H A Dbio_prov.c208 BIO_METHOD *corebiometh = NULL; in ossl_bio_prov_init_bio_method() local
210 corebiometh = BIO_meth_new(BIO_TYPE_CORE_TO_PROV, "BIO to Core filter"); in ossl_bio_prov_init_bio_method()
211 if (corebiometh == NULL in ossl_bio_prov_init_bio_method()
212 || !BIO_meth_set_write_ex(corebiometh, bio_core_write_ex) in ossl_bio_prov_init_bio_method()
213 || !BIO_meth_set_read_ex(corebiometh, bio_core_read_ex) in ossl_bio_prov_init_bio_method()
214 || !BIO_meth_set_puts(corebiometh, bio_core_puts) in ossl_bio_prov_init_bio_method()
215 || !BIO_meth_set_gets(corebiometh, bio_core_gets) in ossl_bio_prov_init_bio_method()
216 || !BIO_meth_set_ctrl(corebiometh, bio_core_ctrl) in ossl_bio_prov_init_bio_method()
217 || !BIO_meth_set_create(corebiometh, bio_core_new) in ossl_bio_prov_init_bio_method()
218 || !BIO_meth_set_destroy(corebiometh, bio_core_fre in ossl_bio_prov_init_bio_method()
229 BIO_METHOD *corebiometh = ossl_prov_ctx_get0_core_bio_method(provctx); ossl_bio_new_from_core_bio() local
[all...]
H A Dprovider_ctx.c36 void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh) in ossl_prov_ctx_set0_core_bio_method() argument
39 ctx->corebiometh = corebiometh; in ossl_prov_ctx_set0_core_bio_method()
60 return ctx->corebiometh; in ossl_prov_ctx_get0_core_bio_method()
/third_party/openssl/providers/common/
H A Dbio_prov.c208 BIO_METHOD *corebiometh = NULL; in ossl_bio_prov_init_bio_method() local
210 corebiometh = BIO_meth_new(BIO_TYPE_CORE_TO_PROV, "BIO to Core filter"); in ossl_bio_prov_init_bio_method()
211 if (corebiometh == NULL in ossl_bio_prov_init_bio_method()
212 || !BIO_meth_set_write_ex(corebiometh, bio_core_write_ex) in ossl_bio_prov_init_bio_method()
213 || !BIO_meth_set_read_ex(corebiometh, bio_core_read_ex) in ossl_bio_prov_init_bio_method()
214 || !BIO_meth_set_puts(corebiometh, bio_core_puts) in ossl_bio_prov_init_bio_method()
215 || !BIO_meth_set_gets(corebiometh, bio_core_gets) in ossl_bio_prov_init_bio_method()
216 || !BIO_meth_set_ctrl(corebiometh, bio_core_ctrl) in ossl_bio_prov_init_bio_method()
217 || !BIO_meth_set_create(corebiometh, bio_core_new) in ossl_bio_prov_init_bio_method()
218 || !BIO_meth_set_destroy(corebiometh, bio_core_fre in ossl_bio_prov_init_bio_method()
229 BIO_METHOD *corebiometh = ossl_prov_ctx_get0_core_bio_method(provctx); ossl_bio_new_from_core_bio() local
[all...]
H A Dprovider_ctx.c36 void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh) in ossl_prov_ctx_set0_core_bio_method() argument
39 ctx->corebiometh = corebiometh; in ossl_prov_ctx_set0_core_bio_method()
60 return ctx->corebiometh; in ossl_prov_ctx_get0_core_bio_method()
/third_party/node/deps/openssl/openssl/providers/common/include/prov/
H A Dprovider_ctx.h21 BIO_METHOD *corebiometh; member
35 void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh);
/third_party/openssl/providers/common/include/prov/
H A Dprovider_ctx.h21 BIO_METHOD *corebiometh; member
35 void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh);
/third_party/node/deps/openssl/openssl/providers/
H A Dbaseprov.c132 BIO_METHOD *corebiometh; in ossl_base_provider_init() local
165 || (corebiometh = ossl_bio_prov_init_bio_method()) == NULL) { in ossl_base_provider_init()
173 ossl_prov_ctx_set0_core_bio_method(*provctx, corebiometh); in ossl_base_provider_init()
H A Ddefltprov.c548 BIO_METHOD *corebiometh; in ossl_default_provider_init() local
582 || (corebiometh = ossl_bio_prov_init_bio_method()) == NULL) { in ossl_default_provider_init()
590 ossl_prov_ctx_set0_core_bio_method(*provctx, corebiometh); in ossl_default_provider_init()
/third_party/openssl/providers/
H A Dbaseprov.c132 BIO_METHOD *corebiometh; in ossl_base_provider_init() local
165 || (corebiometh = ossl_bio_prov_init_bio_method()) == NULL) { in ossl_base_provider_init()
173 ossl_prov_ctx_set0_core_bio_method(*provctx, corebiometh); in ossl_base_provider_init()
H A Ddefltprov.c550 BIO_METHOD *corebiometh; in ossl_default_provider_init() local
584 || (corebiometh = ossl_bio_prov_init_bio_method()) == NULL) { in ossl_default_provider_init()
592 ossl_prov_ctx_set0_core_bio_method(*provctx, corebiometh); in ossl_default_provider_init()
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_core.c113 static const BIO_METHOD corebiometh = { variable
130 return &corebiometh; in BIO_s_core()
/third_party/openssl/crypto/bio/
H A Dbss_core.c113 static const BIO_METHOD corebiometh = { variable
130 return &corebiometh; in BIO_s_core()

Completed in 5 milliseconds