Home
last modified time | relevance | path

Searched refs:OSSL_CORE_HANDLE (Results 1 – 25 of 35) sorted by relevance

12

/freebsd-14.2/crypto/openssl/include/openssl/
H A Dcore_dispatch.h75 (const OSSL_CORE_HANDLE *prov))
80 (const OSSL_CORE_HANDLE *prov,
84 (const OSSL_CORE_HANDLE *prov,
90 (const OSSL_CORE_HANDLE *prov))
104 (const OSSL_CORE_HANDLE *prov, const char *oid,
210 (const OSSL_CORE_HANDLE *handle,
216 (const OSSL_CORE_HANDLE *handle))
218 (const OSSL_CORE_HANDLE *prov))
220 (const OSSL_CORE_HANDLE *prov))
222 (const OSSL_CORE_HANDLE *prov))
[all …]
H A Dcore.h30 typedef struct ossl_core_handle_st OSSL_CORE_HANDLE; typedef
190 typedef int (OSSL_provider_init_fn)(const OSSL_CORE_HANDLE *handle,
/freebsd-14.2/crypto/openssl/crypto/
H A Dprovider_child.c23 const OSSL_CORE_HANDLE *handle;
24 const OSSL_CORE_HANDLE *curr_prov;
57 static int ossl_child_provider_init(const OSSL_CORE_HANDLE *handle, in ossl_child_provider_init()
98 static int provider_create_child_cb(const OSSL_CORE_HANDLE *prov, void *cbdata) in provider_create_child_cb()
164 static int provider_remove_child_cb(const OSSL_CORE_HANDLE *prov, void *cbdata) in provider_remove_child_cb()
200 const OSSL_CORE_HANDLE *handle, in ossl_provider_init_as_child()
299 const OSSL_CORE_HANDLE *parent_handle; in ossl_provider_up_ref_parent()
316 const OSSL_CORE_HANDLE *parent_handle; in ossl_provider_free_parent()
H A Dprovider_core.c131 int (*create_cb)(const OSSL_CORE_HANDLE *provider, void *cbdata);
132 int (*remove_cb)(const OSSL_CORE_HANDLE *provider, void *cbdata);
191 const OSSL_CORE_HANDLE *handle;
1793 remove_cb((OSSL_CORE_HANDLE *)prov, cbdata); in ossl_provider_register_child_cb()
1969 static int core_thread_start(const OSSL_CORE_HANDLE *handle, in core_thread_start()
1995 static void core_new_error(const OSSL_CORE_HANDLE *handle) in core_new_error()
2000 static void core_set_error_debug(const OSSL_CORE_HANDLE *handle, in core_set_error_debug()
2006 static void core_vset_error(const OSSL_CORE_HANDLE *handle, in core_vset_error()
2027 static int core_set_error_mark(const OSSL_CORE_HANDLE *handle) in core_set_error_mark()
2059 core_provider_get0_dispatch(const OSSL_CORE_HANDLE *prov) in core_provider_get0_dispatch()
[all …]
H A Dcontext.c202 OSSL_LIB_CTX *OSSL_LIB_CTX_new_from_dispatch(const OSSL_CORE_HANDLE *handle, in OSSL_LIB_CTX_new_from_dispatch()
218 OSSL_LIB_CTX *OSSL_LIB_CTX_new_child(const OSSL_CORE_HANDLE *handle, in OSSL_LIB_CTX_new_child()
/freebsd-14.2/crypto/openssl/include/crypto/
H A Drand.h111 size_t ossl_rand_get_entropy(ossl_unused const OSSL_CORE_HANDLE *handle,
114 void ossl_rand_cleanup_entropy(ossl_unused const OSSL_CORE_HANDLE *handle,
116 size_t ossl_rand_get_nonce(ossl_unused const OSSL_CORE_HANDLE *handle,
119 void ossl_rand_cleanup_nonce(ossl_unused const OSSL_CORE_HANDLE *handle,
/freebsd-14.2/crypto/openssl/crypto/rand/
H A Dprov_seed.c15 size_t ossl_rand_get_entropy(ossl_unused const OSSL_CORE_HANDLE *handle, in ossl_rand_get_entropy()
41 void ossl_rand_cleanup_entropy(ossl_unused const OSSL_CORE_HANDLE *handle, in ossl_rand_cleanup_entropy()
47 size_t ossl_rand_get_nonce(ossl_unused const OSSL_CORE_HANDLE *handle, in ossl_rand_get_nonce()
72 void ossl_rand_cleanup_nonce(ossl_unused const OSSL_CORE_HANDLE *handle, in ossl_rand_cleanup_nonce()
/freebsd-14.2/crypto/openssl/providers/common/include/prov/
H A Dprovider_ctx.h19 const OSSL_CORE_HANDLE *handle;
34 void ossl_prov_ctx_set0_handle(PROV_CTX *ctx, const OSSL_CORE_HANDLE *handle);
37 const OSSL_CORE_HANDLE *ossl_prov_ctx_get0_handle(PROV_CTX *ctx);
H A Dprovidercommon.h13 const OSSL_CORE_HANDLE *FIPS_get_core_handle(OSSL_LIB_CTX *ctx);
/freebsd-14.2/crypto/openssl/include/internal/
H A Dprovider.h46 int ossl_provider_set_child(OSSL_PROVIDER *prov, const OSSL_CORE_HANDLE *handle);
47 const OSSL_CORE_HANDLE *ossl_provider_get_parent(OSSL_PROVIDER *prov);
112 const OSSL_CORE_HANDLE *handle,
/freebsd-14.2/crypto/openssl/doc/internal/man3/
H A Dossl_rand_get_entropy.pod13 size_t ossl_rand_get_entropy(OSSL_CORE_HANDLE *handle,
16 void ossl_rand_cleanup_entropy(OSSL_CORE_HANDLE *handle,
18 size_t ossl_rand_get_nonce(OSSL_CORE_HANDLE *handle,
21 void ossl_rand_cleanup_nonce(OSSL_CORE_HANDLE *handle,
H A Dossl_provider_new.pod45 const OSSL_CORE_HANDLE *handle);
46 const OSSL_CORE_HANDLE *ossl_provider_get_parent(OSSL_PROVIDER *prov);
99 const OSSL_CORE_HANDLE *handle,
184 parent library context. I<handle> is the B<OSSL_CORE_HANDLE> object passed to
304 parameters are the B<OSSL_CORE_HANDLE> and L<OSSL_DISPATCH(3)> pointers that were
/freebsd-14.2/crypto/openssl/providers/common/
H A Dprovider_ctx.c30 void ossl_prov_ctx_set0_handle(PROV_CTX *ctx, const OSSL_CORE_HANDLE *handle) in ossl_prov_ctx_set0_handle()
49 const OSSL_CORE_HANDLE *ossl_prov_ctx_get0_handle(PROV_CTX *ctx) in ossl_prov_ctx_get0_handle()
/freebsd-14.2/crypto/openssl/doc/man7/
H A Dprovider-base.pod23 int core_thread_start(const OSSL_CORE_HANDLE *handle,
28 void core_new_error(const OSSL_CORE_HANDLE *handle);
29 void core_set_error_debug(const OSSL_CORE_HANDLE *handle,
31 void core_vset_error(const OSSL_CORE_HANDLE *handle,
76 size_t get_entropy(const OSSL_CORE_HANDLE *handle,
79 void cleanup_entropy(const OSSL_CORE_HANDLE *handle,
81 size_t get_nonce(const OSSL_CORE_HANDLE *handle,
84 void cleanup_nonce(const OSSL_CORE_HANDLE *handle,
96 const char *provider_name(const OSSL_CORE_HANDLE *prov);
651 OSSL_CORE_HANDLE *handle;
[all …]
/freebsd-14.2/crypto/openssl/test/
H A Dp_test.c42 const OSSL_CORE_HANDLE *handle;
97 const OSSL_CORE_HANDLE *hand = ctx->handle; in p_get_params()
251 int OSSL_provider_init(const OSSL_CORE_HANDLE *handle, in OSSL_provider_init()
H A Dp_minimal.c18 int OSSL_provider_init(const OSSL_CORE_HANDLE *handle, in OSSL_provider_init()
H A Dupcallstest.c40 static int obj_provider_init(const OSSL_CORE_HANDLE *handle, in obj_provider_init()
H A Duser_property_test.c69 static int testprov_provider_init(const OSSL_CORE_HANDLE *handle, in testprov_provider_init()
/freebsd-14.2/crypto/openssl/providers/fips/
H A Dfips_entry.c13 int OSSL_provider_init(const OSSL_CORE_HANDLE *handle, in OSSL_provider_init()
H A Dfipsprov.c76 const OSSL_CORE_HANDLE *handle;
197 const OSSL_CORE_HANDLE *handle = in set_self_test_cb()
540 int OSSL_provider_init_int(const OSSL_CORE_HANDLE *handle, in OSSL_provider_init_int()
733 int ossl_fips_intern_provider_init(const OSSL_CORE_HANDLE *handle, in ossl_fips_intern_provider_init()
815 const OSSL_CORE_HANDLE *FIPS_get_core_handle(OSSL_LIB_CTX *libctx) in FIPS_get_core_handle()
/freebsd-14.2/crypto/openssl/providers/
H A Dnullprov.c70 int ossl_null_provider_init(const OSSL_CORE_HANDLE *handle, in ossl_null_provider_init()
H A Dbaseprov.c127 int ossl_base_provider_init(const OSSL_CORE_HANDLE *handle, in ossl_base_provider_init()
H A Dlegacyprov.c181 int OSSL_provider_init(const OSSL_CORE_HANDLE *handle, in OSSL_provider_init()
/freebsd-14.2/crypto/openssl/fuzz/
H A Dfuzz_rand.c144 static int fuzz_rand_provider_init(const OSSL_CORE_HANDLE *handle, in fuzz_rand_provider_init()
/freebsd-14.2/crypto/openssl/doc/man3/
H A DOSSL_LIB_CTX.pod17 OSSL_LIB_CTX *OSSL_LIB_CTX_new_from_dispatch(const OSSL_CORE_HANDLE *handle,
19 OSSL_LIB_CTX *OSSL_LIB_CTX_new_child(const OSSL_CORE_HANDLE *handle,

12