From 9500c8234d8e99396717b9e43f10cc518e8bf668 Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Thu, 25 Feb 2021 09:08:54 +1000 Subject: Fix misc external ossl_ symbols. Partial fix for #12964 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14473) --- providers/implementations/exchange/kdf_exch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'providers/implementations/exchange') diff --git a/providers/implementations/exchange/kdf_exch.c b/providers/implementations/exchange/kdf_exch.c index d61c04354c..38631b45d1 100644 --- a/providers/implementations/exchange/kdf_exch.c +++ b/providers/implementations/exchange/kdf_exch.c @@ -81,7 +81,7 @@ static int kdf_init(void *vpkdfctx, void *vkdf, const OSSL_PARAM params[]) if (!ossl_prov_is_running() || pkdfctx == NULL || vkdf == NULL - || !kdf_data_up_ref(vkdf)) + || !ossl_kdf_data_up_ref(vkdf)) return 0; pkdfctx->kdfdata = vkdf; @@ -109,7 +109,7 @@ static void kdf_freectx(void *vpkdfctx) PROV_KDF_CTX *pkdfctx = (PROV_KDF_CTX *)vpkdfctx; EVP_KDF_CTX_free(pkdfctx->kdfctx); - kdf_data_free(pkdfctx->kdfdata); + ossl_kdf_data_free(pkdfctx->kdfdata); OPENSSL_free(pkdfctx); } @@ -133,7 +133,7 @@ static void *kdf_dupctx(void *vpkdfctx) OPENSSL_free(dstctx); return NULL; } - if (!kdf_data_up_ref(dstctx->kdfdata)) { + if (!ossl_kdf_data_up_ref(dstctx->kdfdata)) { EVP_KDF_CTX_free(dstctx->kdfctx); OPENSSL_free(dstctx); return NULL; -- cgit v1.2.3