Lines Matching refs:certs
307 int CMS_verify(CMS_ContentInfo *cms, STACK_OF(X509) *certs, in CMS_verify() argument
347 scount += CMS_set1_signers_certs(cms, certs, flags); in CMS_verify()
366 if (sk_X509_num(certs) > 0 in CMS_verify()
367 && !ossl_x509_add_certs_new(&untrusted, certs, in CMS_verify()
501 STACK_OF(X509) *certs, in CMS_verify_receipt()
507 r = CMS_verify(rcms, certs, store, NULL, NULL, flags); in CMS_verify_receipt()
514 STACK_OF(X509) *certs, BIO *data, in CMS_sign_ex()
538 for (i = 0; i < sk_X509_num(certs); i++) { in CMS_sign_ex()
539 X509 *x = sk_X509_value(certs, i); in CMS_sign_ex()
561 CMS_ContentInfo *CMS_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, in CMS_sign() argument
564 return CMS_sign_ex(signcert, pkey, certs, data, flags, NULL, NULL); in CMS_sign()
569 STACK_OF(X509) *certs, unsigned int flags) in CMS_sign_receipt()
588 cms = CMS_sign_ex(NULL, NULL, certs, NULL, flags, in CMS_sign_receipt()
640 CMS_ContentInfo *CMS_encrypt_ex(STACK_OF(X509) *certs, BIO *data, in CMS_encrypt_ex() argument
656 for (i = 0; i < sk_X509_num(certs); i++) { in CMS_encrypt_ex()
657 recip = sk_X509_value(certs, i); in CMS_encrypt_ex()
678 CMS_ContentInfo *CMS_encrypt(STACK_OF(X509) *certs, BIO *data, in CMS_encrypt() argument
681 return CMS_encrypt_ex(certs, data, cipher, flags, NULL, NULL); in CMS_encrypt()