mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
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:
parent
19ea8a8a21
commit
91593b3784
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user