Home
last modified time | relevance | path

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

/netbsd/src/crypto/external/bsd/openssl/dist/crypto/cms/
Dcms_lib.c263 return &cms->d.signedData->encapContentInfo->eContent; in CMS_get0_content()
269 return &cms->d.digestedData->encapContentInfo->eContent; in CMS_get0_content()
279 return &cms->d.authenticatedData->encapContentInfo->eContent; in CMS_get0_content()
282 return &cms->d.compressedData->encapContentInfo->eContent; in CMS_get0_content()
303 return &cms->d.signedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
309 return &cms->d.digestedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
318 return &cms->d.authenticatedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
321 return &cms->d.compressedData->encapContentInfo->eContentType; in cms_get0_econtent_type()
Dcms_local.h77 CMS_EncapsulatedContentInfo *encapContentInfo; member
254 CMS_EncapsulatedContentInfo *encapContentInfo; member
270 CMS_EncapsulatedContentInfo *encapContentInfo; member
290 CMS_EncapsulatedContentInfo *encapContentInfo; member
Dcms_asn1.c82 ASN1_SIMPLE(CMS_SignedData, encapContentInfo, CMS_EncapsulatedContentInfo),
249 ASN1_SIMPLE(CMS_DigestedData, encapContentInfo, CMS_EncapsulatedContentInfo),
276 ASN1_SIMPLE(CMS_AuthenticatedData, encapContentInfo, CMS_EncapsulatedContentInfo),
285 ASN1_SIMPLE(CMS_CompressedData, encapContentInfo, CMS_EncapsulatedContentInfo),
Dcms_sd.c45 cms->d.signedData->encapContentInfo->eContentType = in cms_signed_data_init()
47 cms->d.signedData->encapContentInfo->partial = 1; in cms_signed_data_init()
97 if ((OBJ_obj2nid(sd->encapContentInfo->eContentType) != NID_pkcs7_data) in cms_sd_set_version()
131 ASN1_OBJECT *ctype = cms->d.signedData->encapContentInfo->eContentType; in cms_set_si_contentType_attr()
786 cms->d.signedData->encapContentInfo->partial = 0; in ossl_cms_SignedData_final()
938 if (cms->d.signedData->encapContentInfo->partial) in ossl_cms_SignedData_init_bio()
Dcms_cd.c56 cd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data); in ossl_cms_CompressedData_create()
Dcms_dd.c40 dd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data); in ossl_cms_DigestedData_create()
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/hx509/
Dcms.c829 if (sd.encapContentInfo.eContent == NULL && signedContent == NULL) { in hx509_cms_verify_signed()
835 if (sd.encapContentInfo.eContent && signedContent) { in hx509_cms_verify_signed()
842 if (sd.encapContentInfo.eContent) in hx509_cms_verify_signed()
843 ret = der_copy_octet_string(sd.encapContentInfo.eContent, content); in hx509_cms_verify_signed()
1015 if (der_heim_oid_cmp(match_oid, &sd.encapContentInfo.eContentType) && in hx509_cms_verify_signed()
1084 ret = der_copy_oid(&sd.encapContentInfo.eContentType, contentType); in hx509_cms_verify_signed()
1517 der_copy_oid(eContentType, &sigctx.sd.encapContentInfo.eContentType); in hx509_cms_create_signed()
1523 ALLOC(sigctx.sd.encapContentInfo.eContent, 1); in hx509_cms_create_signed()
1524 if (sigctx.sd.encapContentInfo.eContent == NULL) { in hx509_cms_create_signed()
1530 sigctx.sd.encapContentInfo.eContent->data = malloc(length); in hx509_cms_create_signed()
[all …]
/netbsd/src/crypto/external/bsd/heimdal/dist/lib/asn1/
Dcms.asn191 encapContentInfo EncapsulatedContentInfo,