mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
core: support modified gettable/settable ctx calls for KDFs
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14240)
This commit is contained in:
parent
a5120afda3
commit
de43d82b6d
@ -376,9 +376,9 @@ OSSL_CORE_MAKE_FUNC(int, kdf_derive, (void *kctx, unsigned char *key,
|
||||
size_t keylen))
|
||||
OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, kdf_gettable_params, (void *provctx))
|
||||
OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, kdf_gettable_ctx_params,
|
||||
(void *provctx))
|
||||
(void *kctx, void *provctx))
|
||||
OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, kdf_settable_ctx_params,
|
||||
(void *provctx))
|
||||
(void *kctx, void *provctx))
|
||||
OSSL_CORE_MAKE_FUNC(int, kdf_get_params, (OSSL_PARAM params[]))
|
||||
OSSL_CORE_MAKE_FUNC(int, kdf_get_ctx_params,
|
||||
(void *kctx, OSSL_PARAM params[]))
|
||||
|
@ -5302,6 +5302,8 @@ EVP_PKEY_fromdata_settable ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_PKEY_param_check_quick ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_PKEY_public_check_quick ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_PKEY_CTX_is_a ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_KDF_CTX_gettable_params ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_KDF_CTX_settable_params ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_RAND_CTX_gettable_params ? 3_0_0 EXIST::FUNCTION:
|
||||
EVP_RAND_CTX_settable_params ? 3_0_0 EXIST::FUNCTION:
|
||||
RAND_set_DRBG_type ? 3_0_0 EXIST::FUNCTION:
|
||||
|
Loading…
Reference in New Issue
Block a user