mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
misc: other init function param additions
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14383)
This commit is contained in:
parent
ee22fca5ce
commit
1666eec837
@ -419,7 +419,7 @@ CMS_SignerInfo *CMS_add1_signer(CMS_ContentInfo *cms,
|
||||
} else if (EVP_DigestSignInit_ex(si->mctx, &si->pctx, EVP_MD_name(md),
|
||||
ossl_cms_ctx_get0_libctx(ctx),
|
||||
ossl_cms_ctx_get0_propq(ctx),
|
||||
pk) <= 0) {
|
||||
pk, NULL) <= 0) {
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
@ -743,7 +743,8 @@ int CMS_SignerInfo_sign(CMS_SignerInfo *si)
|
||||
EVP_MD_CTX_reset(mctx);
|
||||
if (EVP_DigestSignInit_ex(mctx, &pctx, md_name,
|
||||
ossl_cms_ctx_get0_libctx(ctx),
|
||||
ossl_cms_ctx_get0_propq(ctx), si->pkey) <= 0)
|
||||
ossl_cms_ctx_get0_propq(ctx), si->pkey,
|
||||
NULL) <= 0)
|
||||
goto err;
|
||||
si->pctx = pctx;
|
||||
}
|
||||
@ -853,7 +854,7 @@ int CMS_SignerInfo_verify(CMS_SignerInfo *si)
|
||||
}
|
||||
mctx = si->mctx;
|
||||
if (EVP_DigestVerifyInit_ex(mctx, &si->pctx, EVP_MD_name(md), libctx,
|
||||
propq, si->pkey) <= 0)
|
||||
propq, si->pkey, NULL) <= 0)
|
||||
goto err;
|
||||
|
||||
if (!cms_sd_asn1_ctrl(si, 1))
|
||||
|
@ -123,7 +123,7 @@ int SCT_CTX_verify(const SCT_CTX *sctx, const SCT *sct)
|
||||
goto end;
|
||||
|
||||
if (!EVP_DigestVerifyInit_ex(ctx, NULL, "SHA2-256", sctx->libctx,
|
||||
sctx->propq, sctx->pkey))
|
||||
sctx->propq, sctx->pkey, NULL))
|
||||
goto end;
|
||||
|
||||
if (!sct_ctx_update(ctx, sctx, sct))
|
||||
|
@ -928,7 +928,8 @@ int PKCS7_SIGNER_INFO_sign(PKCS7_SIGNER_INFO *si)
|
||||
|
||||
if (EVP_DigestSignInit_ex(mctx, &pctx, EVP_MD_name(md),
|
||||
ossl_pkcs7_ctx_get0_libctx(ctx),
|
||||
ossl_pkcs7_ctx_get0_propq(ctx), si->pkey) <= 0)
|
||||
ossl_pkcs7_ctx_get0_propq(ctx), si->pkey,
|
||||
NULL) <= 0)
|
||||
goto err;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user