aboutsummaryrefslogtreecommitdiff
path: root/providers/implementations/exchange
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-02-25 09:08:54 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:37 +1000
commit9500c8234d8e99396717b9e43f10cc518e8bf668 (patch)
tree51975e210b7900643c21d2ad67b3a65a902fc591 /providers/implementations/exchange
parente4bec869104cf4ba51cbb1effb0f5437e327ecd8 (diff)
downloadopenssl-9500c8234d8e99396717b9e43f10cc518e8bf668.zip
openssl-9500c8234d8e99396717b9e43f10cc518e8bf668.tar.gz
openssl-9500c8234d8e99396717b9e43f10cc518e8bf668.tar.bz2
Fix misc external ossl_ symbols.
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'providers/implementations/exchange')
-rw-r--r--providers/implementations/exchange/kdf_exch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/providers/implementations/exchange/kdf_exch.c b/providers/implementations/exchange/kdf_exch.c
index d61c043..38631b4 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;