prov: use new MAC_init arguments in signature legacy code

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14310)
This commit is contained in:
Pauli 2021-02-25 13:52:06 +10:00
parent 19ea8a8a21
commit 91593b3784

View File

@ -117,11 +117,11 @@ static int mac_digest_sign_init(void *vpmacctx, const char *mdname, void *vkey)
(char *)mdname,
(char *)engine,
pmacctx->key->properties,
pmacctx->key->priv_key,
pmacctx->key->priv_key_len))
NULL, 0))
return 0;
if (!EVP_MAC_init(pmacctx->macctx))
if (!EVP_MAC_init(pmacctx->macctx, pmacctx->key->priv_key,
pmacctx->key->priv_key_len, NULL))
return 0;
return 1;