kdf: use the app's libctx and property query when searching for algorithms

Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15687)
This commit is contained in:
Pauli 2021-06-10 10:26:43 +10:00
parent c8dd887d3c
commit f64851c5b3
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@ opthelp:
if (argc != 1)
goto opthelp;
if ((kdf = EVP_KDF_fetch(NULL, argv[0], NULL)) == NULL) {
if ((kdf = EVP_KDF_fetch(app_get0_libctx(), argv[0],
app_get0_propq())) == NULL) {
BIO_printf(bio_err, "Invalid KDF name %s\n", argv[0]);
goto opthelp;
}