core: add params argument to key manager's gen_init call

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14383)
This commit is contained in:
Pauli 2021-03-02 09:03:00 +10:00
parent f9562909b7
commit 2faea85380
2 changed files with 11 additions and 1 deletions

View File

@ -524,7 +524,7 @@ OSSL_CORE_MAKE_FUNC(void *, keymgmt_new, (void *provctx))
# define OSSL_FUNC_KEYMGMT_GEN 6
# define OSSL_FUNC_KEYMGMT_GEN_CLEANUP 7
OSSL_CORE_MAKE_FUNC(void *, keymgmt_gen_init,
(void *provctx, int selection))
(void *provctx, int selection, const OSSL_PARAM params[]))
OSSL_CORE_MAKE_FUNC(int, keymgmt_gen_set_template,
(void *genctx, void *templ))
OSSL_CORE_MAKE_FUNC(int, keymgmt_gen_set_params,

View File

@ -5314,3 +5314,13 @@ EVP_RAND_CTX_settable_params ? 3_0_0 EXIST::FUNCTION:
RAND_set_DRBG_type ? 3_0_0 EXIST::FUNCTION:
RAND_set_seed_source_type ? 3_0_0 EXIST::FUNCTION:
BIO_f_readbuffer ? 3_0_0 EXIST::FUNCTION:
EVP_DigestInit_ex2 ? 3_0_0 EXIST::FUNCTION:
EVP_EncryptInit_ex2 ? 3_0_0 EXIST::FUNCTION:
EVP_DecryptInit_ex2 ? 3_0_0 EXIST::FUNCTION:
EVP_CipherInit_ex2 ? 3_0_0 EXIST::FUNCTION:
EVP_PKEY_sign_init_ex ? 3_0_0 EXIST::FUNCTION:
EVP_PKEY_verify_init_ex ? 3_0_0 EXIST::FUNCTION:
EVP_PKEY_verify_recover_init_ex ? 3_0_0 EXIST::FUNCTION:
EVP_PKEY_encrypt_init_ex ? 3_0_0 EXIST::FUNCTION:
EVP_PKEY_decrypt_init_ex ? 3_0_0 EXIST::FUNCTION:
EVP_PKEY_derive_init_ex ? 3_0_0 EXIST::FUNCTION: