summaryrefslogtreecommitdiffstats
path: root/providers/implementations/macs/kmac_prov.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-02-05 18:51:37 +0100
committerTomas Mraz <tomas@openssl.org>2021-02-11 09:34:31 +0100
commitf5f29796f00b94d150087bc72469a4f60a67a23b (patch)
treeb1e64bf9f3b39d9a099e2b595ffc1b41cac5a175 /providers/implementations/macs/kmac_prov.c
parent2741128e9deeb7f6fd73f10a1c657c05433a41cb (diff)
Various cleanup of PROV_R_ reason codes
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14086)
Diffstat (limited to 'providers/implementations/macs/kmac_prov.c')
-rw-r--r--providers/implementations/macs/kmac_prov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/macs/kmac_prov.c b/providers/implementations/macs/kmac_prov.c
index 8f74c2306a..3a57dd0db6 100644
--- a/providers/implementations/macs/kmac_prov.c
+++ b/providers/implementations/macs/kmac_prov.c
@@ -258,7 +258,7 @@ static int kmac_init(void *vmacctx)
/* Check key has been set */
if (kctx->key_len == 0) {
- ERR_raise(ERR_LIB_EVP, EVP_R_NO_KEY_SET);
+ ERR_raise(ERR_LIB_PROV, PROV_R_NO_KEY_SET);
return 0;
}
if (!EVP_DigestInit_ex(kctx->ctx, ossl_prov_digest_md(&kctx->digest),