Lines Matching refs:cms
10 #include <openssl/cms.h>
12 int CMS_add0_cert(CMS_ContentInfo *cms, X509 *cert);
13 int CMS_add1_cert(CMS_ContentInfo *cms, X509 *cert);
14 STACK_OF(X509) *CMS_get1_certs(CMS_ContentInfo *cms);
16 int CMS_add0_crl(CMS_ContentInfo *cms, X509_CRL *crl);
17 int CMS_add1_crl(CMS_ContentInfo *cms, X509_CRL *crl);
18 STACK_OF(X509_CRL) *CMS_get1_crls(CMS_ContentInfo *cms);
22 CMS_add0_cert() and CMS_add1_cert() add certificate B<cert> to B<cms>.
25 CMS_get1_certs() returns all certificates in B<cms>.
27 CMS_add0_crl() and CMS_add1_crl() add CRL B<crl> to B<cms>. CMS_get1_crls()
28 returns any CRLs in B<cms>.
32 The CMS_ContentInfo structure B<cms> must be of type signed data or enveloped
39 As the B<0> implies CMS_add0_cert() adds B<cert> internally to B<cms> and it
43 The same certificate or CRL must not be added to the same cms structure more
53 in practice is if the B<cms> type is invalid.