Home | History | Annotate | Download | only in cms

Lines Matching refs:cert

210 int cms_set1_SignerIdentifier(CMS_SignerIdentifier *sid, X509 *cert, int type)
220 X509_get_issuer_name(cert)))
224 X509_get_serialNumber(cert)))
229 if (!cert->skid)
235 sid->d.subjectKeyIdentifier = ASN1_STRING_dup(cert->skid);
276 int cms_SignerIdentifier_cert_cmp(CMS_SignerIdentifier *sid, X509 *cert)
282 X509_get_issuer_name(cert));
286 X509_get_serialNumber(cert));
290 X509_check_purpose(cert, -1, -1);
291 if (!cert->skid)
294 cert->skid);
440 /* NB ignore -1 return for duplicate cert */
550 int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert)
552 return cms_SignerIdentifier_cert_cmp(si->sid, cert);