Searched refs:contentType (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-11-stable/crypto/openssl/crypto/cms/
H A Dcms_cd.c95 cms->contentType = OBJ_nid2obj(NID_id_smime_ct_compressedData);
119 if (OBJ_obj2nid(cms->contentType) != NID_id_smime_ct_compressedData) {
H A Dcms_lib.c74 return cms->contentType;
82 cms->contentType = OBJ_nid2obj(NID_pkcs7_data);
117 switch (OBJ_obj2nid(cms->contentType)) {
180 switch (OBJ_obj2nid(cms->contentType)) {
208 switch (OBJ_obj2nid(cms->contentType)) {
247 switch (OBJ_obj2nid(cms->contentType)) {
253 return &cms->d.envelopedData->encryptedContentInfo->contentType;
259 return &cms->d.encryptedData->encryptedContentInfo->contentType;
410 switch (OBJ_obj2nid(cms->contentType)) {
487 switch (OBJ_obj2nid(cms->contentType)) {
[all...]
H A Dcms_dd.c80 cms->contentType = OBJ_nid2obj(NID_pkcs7_digest);
H A Dcms_io.c116 int ctype_nid = OBJ_obj2nid(cms->contentType);
H A Dcms_enc.c230 ec->contentType = OBJ_nid2obj(NID_pkcs7_data);
248 cms->contentType = OBJ_nid2obj(NID_pkcs7_encrypted);
250 } else if (OBJ_obj2nid(cms->contentType) != NID_pkcs7_encrypted) {
H A Dcms_lcl.h97 ASN1_OBJECT *contentType; member in struct:CMS_ContentInfo_st
166 ASN1_OBJECT *contentType; member in struct:CMS_EncryptedContentInfo_st
388 ASN1_OBJECT *contentType; member in struct:CMS_Receipt_st
H A Dcms_ess.c320 if (OBJ_cmp(octype, rct->contentType)) {
382 rct.contentType = ctype;
H A Dcms_asn1.c141 ASN1_SIMPLE(CMS_EncryptedContentInfo, contentType, ASN1_OBJECT),
335 } ASN1_ADB_END(CMS_ContentInfo, 0, contentType, 0, &cms_default_tt, NULL);
369 ASN1_SIMPLE(CMS_ContentInfo, contentType, ASN1_OBJECT),
409 ASN1_SIMPLE(CMS_Receipt, contentType, ASN1_OBJECT),
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dks_p12.c238 heim_oid contentType; local
241 memset(&contentType, 0, sizeof(contentType));
246 &contentType,
251 if (der_heim_oid_cmp(&contentType, &asn1_oid_id_pkcs7_data) == 0)
255 der_free_oid(&contentType);
266 heim_oid contentType; local
270 memset(&contentType, 0, sizeof(contentType));
280 &contentType,
[all...]
H A Dcms.c86 ret = der_copy_oid(oid, &ci.contentType);
145 ret = der_copy_oid(&ci.contentType, oid);
340 * @param contentType output type oid, should be freed with der_free_oid().
354 heim_oid *contentType,
373 memset(contentType, 0, sizeof(*contentType));
455 ret = der_copy_oid(&ed.encryptedContentInfo.contentType, contentType);
517 der_free_oid(contentType);
543 * @param contentType typ
347 hx509_cms_unenvelope(hx509_context context, hx509_certs certs, int flags, const void *data, size_t length, const heim_octet_string *encryptedContent, time_t time_now, heim_oid *contentType, heim_octet_string *content) argument
551 hx509_cms_envelope_1(hx509_context context, int flags, hx509_cert cert, const void *data, size_t length, const heim_oid *encryption_type, const heim_oid *contentType, heim_octet_string *content) argument
779 hx509_cms_verify_signed(hx509_context context, hx509_verify_ctx ctx, unsigned int flags, const void *data, size_t length, const heim_octet_string *signedContent, hx509_certs pool, heim_oid *contentType, heim_octet_string *content, hx509_certs *signer_certs) argument
1586 hx509_cms_decrypt_encrypted(hx509_context context, hx509_lock lock, const void *data, size_t length, heim_oid *contentType, heim_octet_string *content) argument
[all...]
H A Dhxtool.c359 heim_oid contentType; local
370 memset(&contentType, 0, sizeof(contentType));
438 parse_oid(opt->content_type_string, &asn1_oid_id_pkcs7_data, &contentType);
442 &contentType,
460 der_free_oid(&contentType);
512 heim_oid contentType = { 0, NULL }; local
556 NULL, 0, &contentType, &o);
565 der_free_oid(&contentType);
579 heim_oid contentType; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/
H A DDefinedAtom.cpp17 return permissions(this->contentType());
H A DSymbolTable.cpp210 atom->contentType(),
223 if (l->contentType() != r->contentType())
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DStubsPass.cpp41 ContentType contentType() const override {
72 NonLazyPointerAtom(const File &file, bool is64, ContentType contentType) argument
73 : SimpleDefinedAtom(file), _is64(is64), _contentType(contentType) { }
77 ContentType contentType() const override {
114 ContentType contentType() const override {
148 ContentType contentType() const override {
183 ContentType contentType() const override {
H A DAtoms.h49 ContentType contentType() const override { return _contentType; }
124 ContentType contentType() const override { return DefinedAtom::typeZeroFill; }
H A DSectCreateFile.h39 ContentType contentType() const override { return typeSectCreate; }
H A DObjCPass.cpp63 ContentType contentType() const override {
H A DCompactUnwindPass.cpp92 ContentType contentType() const override {
354 return atom->contentType() == DefinedAtom::typeCompactUnwindInfo;
367 if (atom->contentType() != DefinedAtom::typeCompactUnwindInfo)
433 if (ehFrameAtom->contentType() != DefinedAtom::typeCFI)
461 if (atom->contentType() != DefinedAtom::typeCode)
509 if (cfiTarget->contentType() == DefinedAtom::typeCFI)
516 if ((atom->contentType() == DefinedAtom::typeCFI) &&
H A DMachONormalizedFileFromAtoms.cpp346 DefinedAtom::ContentType type = atom->contentType();
429 if (atom->contentType() == DefinedAtom::typeMachHeader) {
434 } else if (atom->contentType() == DefinedAtom::typeDSOHandle)
745 if (lookForEntry && (info.atom->contentType() == DefinedAtom::typeCode) &&
761 << info.atom->contentType()
782 << definedAtom->contentType()
814 if (atom->contentType() == DefinedAtom::typeCFI ||
815 atom->contentType() == DefinedAtom::typeCString)
912 if (atom->contentType() == DefinedAtom::typeCode) {
963 if (atom->contentType()
[all...]
H A DLayoutPass.cpp141 << ", type=" << atom->contentType()
208 DefinedAtom::ContentType leftType = leftRoot->contentType();
209 DefinedAtom::ContentType rightType = rightRoot->contentType();
213 formatReason("contentType", (int)leftType, (int)rightType));
H A DArchHandler.cpp143 assert(atom->contentType() == DefinedAtom::typeCFI);
H A DTLVPass.cpp34 ContentType contentType() const override {
H A DGOTPass.cpp58 ContentType contentType() const override {
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DDefinedAtom.h249 virtual ContentType contentType() const = 0;
257 /// contentType().
342 ContentType atomContentType = contentType();
352 ContentType atomContentType = contentType();
/freebsd-11-stable/contrib/expat/xmlwf/
H A Dxmlwin32url.cxx183 char contentType[1024]; local
184 DWORD bufSize = sizeof(contentType);
186 contentType[0] = 0;
187 hr = hp->QueryInfo(HTTP_QUERY_CONTENT_TYPE, contentType,
191 getXMLCharset(contentType, charset);

Completed in 493 milliseconds

12