Path: blob/main/crypto/openssl/providers/common/include/prov/provider_ctx.h
48535 views
/*1* Copyright 2019-2025 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#ifndef OSSL_PROV_PROVIDER_CTX_H10# define OSSL_PROV_PROVIDER_CTX_H1112# include <openssl/types.h>13# include <openssl/crypto.h>14# include <openssl/bio.h>15# include <openssl/core.h>16# include <openssl/core_dispatch.h>1718typedef struct prov_ctx_st {19const OSSL_CORE_HANDLE *handle;20OSSL_LIB_CTX *libctx; /* For all provider modules */21BIO_METHOD *corebiometh;22OSSL_FUNC_core_get_params_fn *core_get_params;23} PROV_CTX;2425/*26* To be used anywhere the library context needs to be passed, such as to27* fetching functions.28*/29# define PROV_LIBCTX_OF(provctx) \30ossl_prov_ctx_get0_libctx((provctx))3132PROV_CTX *ossl_prov_ctx_new(void);33void ossl_prov_ctx_free(PROV_CTX *ctx);34void ossl_prov_ctx_set0_libctx(PROV_CTX *ctx, OSSL_LIB_CTX *libctx);35void ossl_prov_ctx_set0_handle(PROV_CTX *ctx, const OSSL_CORE_HANDLE *handle);36void ossl_prov_ctx_set0_core_bio_method(PROV_CTX *ctx, BIO_METHOD *corebiometh);37void38ossl_prov_ctx_set0_core_get_params(PROV_CTX *ctx,39OSSL_FUNC_core_get_params_fn *c_get_params);40OSSL_LIB_CTX *ossl_prov_ctx_get0_libctx(PROV_CTX *ctx);41const OSSL_CORE_HANDLE *ossl_prov_ctx_get0_handle(PROV_CTX *ctx);42BIO_METHOD *ossl_prov_ctx_get0_core_bio_method(PROV_CTX *ctx);43OSSL_FUNC_core_get_params_fn *ossl_prov_ctx_get0_core_get_params(PROV_CTX *ctx);44const char *45ossl_prov_ctx_get_param(PROV_CTX *ctx, const char *name, const char *defval);46int ossl_prov_ctx_get_bool_param(PROV_CTX *ctx, const char *name, int defval);4748#endif495051