mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
Rename CMS_si_check_attributes to ossl_cms_si_check_attributes
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
This commit is contained in:
parent
78715dcc31
commit
3022b7f404
@ -263,7 +263,7 @@ static int cms_check_attribute(int nid, int flags, int type,
|
||||
* attributes. Only one instance of each is allowed, with each of these
|
||||
* attributes containing a single attribute value in its set.
|
||||
*/
|
||||
int CMS_si_check_attributes(const CMS_SignerInfo *si)
|
||||
int ossl_cms_si_check_attributes(const CMS_SignerInfo *si)
|
||||
{
|
||||
int i;
|
||||
int have_signed_attrs = (CMS_signed_get_attr_count(si) > 0);
|
||||
|
@ -468,7 +468,7 @@ int ossl_cms_RecipientInfo_kari_encrypt(const CMS_ContentInfo *cms,
|
||||
int ossl_cms_RecipientInfo_pwri_crypt(const CMS_ContentInfo *cms,
|
||||
CMS_RecipientInfo *ri, int en_de);
|
||||
/* SignerInfo routines */
|
||||
int CMS_si_check_attributes(const CMS_SignerInfo *si);
|
||||
int ossl_cms_si_check_attributes(const CMS_SignerInfo *si);
|
||||
void ossl_cms_SignerInfos_set_cmsctx(CMS_ContentInfo *cms);
|
||||
|
||||
|
||||
|
@ -734,7 +734,7 @@ int CMS_SignerInfo_sign(CMS_SignerInfo *si)
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (!CMS_si_check_attributes(si))
|
||||
if (!ossl_cms_si_check_attributes(si))
|
||||
goto err;
|
||||
|
||||
if (si->pctx)
|
||||
@ -829,7 +829,7 @@ int CMS_SignerInfo_verify(CMS_SignerInfo *si)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (!CMS_si_check_attributes(si))
|
||||
if (!ossl_cms_si_check_attributes(si))
|
||||
return -1;
|
||||
|
||||
name = OBJ_nid2sn(OBJ_obj2nid(si->digestAlgorithm->algorithm));
|
||||
|
Loading…
Reference in New Issue
Block a user