Home
last modified time | relevance | path

Searched refs:encapContentInfo (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/crypto/openssl/crypto/cms/
Dcms_lib.c165 return &cms->d.signedData->encapContentInfo->eContent; in CMS_get0_content()
171 return &cms->d.digestedData->encapContentInfo->eContent; in CMS_get0_content()
177 return &cms->d.authenticatedData->encapContentInfo->eContent; in CMS_get0_content()
180 return &cms->d.compressedData->encapContentInfo->eContent; in CMS_get0_content()
201 return &cms->d.signedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
207 return &cms->d.digestedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
213 return &cms->d.authenticatedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
216 return &cms->d.compressedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
Dcms_local.h68 CMS_EncapsulatedContentInfo *encapContentInfo; member
238 CMS_EncapsulatedContentInfo *encapContentInfo; member
254 CMS_EncapsulatedContentInfo *encapContentInfo; member
264 CMS_EncapsulatedContentInfo *encapContentInfo; member
Dcms_asn1.c82 ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo),
249 ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo),
265 ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo),
274 ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo),
Dcms_sd.c41 cms->d.signedData->encapContentInfo->eContentType = in cms_signed_data_init()
43 cms->d.signedData->encapContentInfo->partial = 1; in cms_signed_data_init()
92 if ((OBJ_obj2nid(sd->encapContentInfo->eContentType) != NID_pkcs7_data) in cms_sd_set_version()
126 ASN1_OBJECT *ctype = cms->d.signedData->encapContentInfo->eContentType; in cms_set_si_contentType_attr()
655 cms->d.signedData->encapContentInfo->partial = 0; in cms_SignedData_final()
792 if (cms->d.signedData->encapContentInfo->partial) in cms_SignedData_init_bio()
Dcms_cd.c54 cd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data); in cms_CompressedData_create()
Dcms_dd.c37 dd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data); in cms_DigestedData_create()
/freebsd-12-stable/crypto/heimdal/lib/hx509/
Dcms.c813 if (sd.encapContentInfo.eContent == NULL && signedContent == NULL) { in hx509_cms_verify_signed()
819 if (sd.encapContentInfo.eContent && signedContent) { in hx509_cms_verify_signed()
826 if (sd.encapContentInfo.eContent) in hx509_cms_verify_signed()
827 ret = der_copy_octet_string(sd.encapContentInfo.eContent, content); in hx509_cms_verify_signed()
999 if (der_heim_oid_cmp(match_oid, &sd.encapContentInfo.eContentType) && in hx509_cms_verify_signed()
1066 ret = der_copy_oid(&sd.encapContentInfo.eContentType, contentType); in hx509_cms_verify_signed()
1497 der_copy_oid(eContentType, &sigctx.sd.encapContentInfo.eContentType); in hx509_cms_create_signed()
1503 ALLOC(sigctx.sd.encapContentInfo.eContent, 1); in hx509_cms_create_signed()
1504 if (sigctx.sd.encapContentInfo.eContent == NULL) { in hx509_cms_create_signed()
1510 sigctx.sd.encapContentInfo.eContent->data = malloc(length); in hx509_cms_create_signed()
[all …]
/freebsd-12-stable/crypto/heimdal/lib/asn1/
Dcms.asn191 encapContentInfo EncapsulatedContentInfo,