summaryrefslogtreecommitdiffstats
path: root/providers
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-11-16 12:08:30 +1000
committerPauli <paul.dale@oracle.com>2020-11-19 07:39:13 +1000
commit5687afdf032ac1d0e92958c209f6c493c347fa25 (patch)
tree29026fe61433751ae7d302ba5a45725420351db5 /providers
parent1dc188ba0e7bd00e206d0190b2128e96287838df (diff)
rename sha1_ctrl to ossl_sha1_ctrl.
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13417)
Diffstat (limited to 'providers')
-rw-r--r--providers/implementations/digests/sha2_prov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/providers/implementations/digests/sha2_prov.c b/providers/implementations/digests/sha2_prov.c
index dec9c316e7..2f01149ad9 100644
--- a/providers/implementations/digests/sha2_prov.c
+++ b/providers/implementations/digests/sha2_prov.c
@@ -45,8 +45,8 @@ static int sha1_set_ctx_params(void *vctx, const OSSL_PARAM params[])
if (ctx != NULL && params != NULL) {
p = OSSL_PARAM_locate_const(params, OSSL_DIGEST_PARAM_SSL3_MS);
if (p != NULL && p->data_type == OSSL_PARAM_OCTET_STRING)
- return sha1_ctrl(ctx, EVP_CTRL_SSL3_MASTER_SECRET, p->data_size,
- p->data);
+ return ossl_sha1_ctrl(ctx, EVP_CTRL_SSL3_MASTER_SECRET,
+ p->data_size, p->data);
}
return 0;
}