/external/wpa_supplicant_8/hs20/server/ca/ |
D | est-csrattrs.cnf | 4 #oid1 = OID:challengePassword 6 oid2 = OID:sha256WithRSAEncryption 9 oid = OID:extensionRequest 14 oid1 = OID:macAddress 15 #oid2 = OID:imei 16 #oid3 = OID:meid 17 #oid4 = OID:DevId
|
D | openssl.cnf | 158 algorithm=OID:sha256 160 algorithm=OID:sha1
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | EvpMdRef.java | 36 if (SHA256.JCA_NAME.equals(algorithmUpper) || SHA256.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 38 } else if (SHA512.JCA_NAME.equals(algorithmUpper) || SHA512.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 40 } else if (SHA1.JCA_NAME.equals(algorithmUpper) || SHA1.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 42 } else if (SHA384.JCA_NAME.equals(algorithmUpper) || SHA384.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 44 } else if (SHA224.JCA_NAME.equals(algorithmUpper) || SHA224.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 107 static final String OID = "1.2.840.113549.2.5"; field in EvpMdRef.MD5 116 static final String OID = "1.3.14.3.2.26"; field in EvpMdRef.SHA1 124 static final String OID = "2.16.840.1.101.3.4.2.4"; field in EvpMdRef.SHA224 133 static final String OID = "2.16.840.1.101.3.4.2.1"; field in EvpMdRef.SHA256 142 static final String OID = "2.16.840.1.101.3.4.2.2"; field in EvpMdRef.SHA384 [all …]
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | EvpMdRef.java | 36 || SHA256.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 39 || SHA512.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 42 || SHA1.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 45 || SHA384.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 48 || SHA224.OID.equals(algorithmUpper)) { in getJcaDigestAlgorithmStandardName() 111 static final String OID = "1.2.840.113549.2.5"; field in EvpMdRef.MD5 120 static final String OID = "1.3.14.3.2.26"; field in EvpMdRef.SHA1 128 static final String OID = "2.16.840.1.101.3.4.2.4"; field in EvpMdRef.SHA224 137 static final String OID = "2.16.840.1.101.3.4.2.1"; field in EvpMdRef.SHA256 146 static final String OID = "2.16.840.1.101.3.4.2.2"; field in EvpMdRef.SHA384 [all …]
|
/external/u-boot/include/linux/ |
D | oid_registry.h | 19 enum OID { enum 113 extern enum OID look_up_OID(const void *data, size_t datasize); 115 extern int sprint_OID(enum OID, char *, size_t);
|
/external/clang/lib/CodeGen/ |
D | CGObjCRuntime.cpp | 30 const ObjCInterfaceDecl *OID, in LookupFieldBitOffset() argument 66 const ObjCInterfaceDecl *OID, in ComputeIvarBaseOffset() argument 68 return LookupFieldBitOffset(CGM, OID, nullptr, Ivar) / in ComputeIvarBaseOffset() 73 const ObjCImplementationDecl *OID, in ComputeIvarBaseOffset() argument 75 return LookupFieldBitOffset(CGM, OID->getClassInterface(), OID, Ivar) / in ComputeIvarBaseOffset() 87 const ObjCInterfaceDecl *OID, in EmitValueForIvarAtOffset() argument 119 uint64_t FieldBitOffset = LookupFieldBitOffset(CGF.CGM, OID, nullptr, Ivar); in EmitValueForIvarAtOffset()
|
D | CGObjCRuntime.h | 79 const ObjCInterfaceDecl *OID, 82 const ObjCImplementationDecl *OID, 86 const ObjCInterfaceDecl *OID, 152 virtual void GenerateClass(const ObjCImplementationDecl *OID) = 0; 231 const ObjCInterfaceDecl *OID) = 0;
|
D | CGObjCGNU.cpp | 422 llvm::Constant *GeneratePropertyList(const ObjCImplementationDecl *OID, 527 const ObjCInterfaceDecl *OID) override; 1079 const ObjCInterfaceDecl *OID) { in GetClass() argument 1080 return GetClassNamed(CGF, OID->getNameAsString(), OID->isWeakImported()); in GetClass() 2091 llvm::Constant *CGObjCGNU::GeneratePropertyList(const ObjCImplementationDecl *OID, in GeneratePropertyList() argument 2104 for (auto *propertyImpl : OID->property_impls()) { in GeneratePropertyList() 2112 Fields.push_back(MakePropertyEncodingString(property, OID)); in GeneratePropertyList() 2166 void CGObjCGNU::GenerateClass(const ObjCImplementationDecl *OID) { in GenerateClass() argument 2171 OID->getClassInterface()->getSuperClass(); in GenerateClass() 2180 const_cast<ObjCInterfaceDecl *>(OID->getClassInterface()); in GenerateClass() [all …]
|
/external/clang/lib/AST/ |
D | DeclPrinter.cpp | 1094 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) { in VisitObjCImplementationDecl() argument 1095 std::string I = OID->getNameAsString(); in VisitObjCImplementationDecl() 1096 ObjCInterfaceDecl *SID = OID->getSuperClass(); in VisitObjCImplementationDecl() 1104 if (OID->ivar_size() > 0) { in VisitObjCImplementationDecl() 1108 for (const auto *I : OID->ivars()) { in VisitObjCImplementationDecl() 1115 else if (SID || (OID->decls_begin() != OID->decls_end())) { in VisitObjCImplementationDecl() 1119 VisitDeclContext(OID, false); in VisitObjCImplementationDecl() 1125 void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) { in VisitObjCInterfaceDecl() argument 1126 std::string I = OID->getNameAsString(); in VisitObjCInterfaceDecl() 1127 ObjCInterfaceDecl *SID = OID->getSuperClass(); in VisitObjCInterfaceDecl() [all …]
|
D | DeclObjC.cpp | 249 const ObjCInterfaceDecl *OID = cast<ObjCInterfaceDecl>(this); in FindPropertyDeclaration() local 251 for (const auto *Cat : OID->visible_categories()) { in FindPropertyDeclaration() 259 for (const auto *I : OID->all_referenced_protocols()) in FindPropertyDeclaration() 265 if (const ObjCInterfaceDecl *superClass = OID->getSuperClass()) in FindPropertyDeclaration() 1006 const ObjCInterfaceDecl *OID, in getSelfType() argument 1015 if (OID) { in getSelfType() 1016 selfTy = Context.getObjCInterfaceType(OID); in getSelfType() 1051 const ObjCInterfaceDecl *OID) { in createImplicitParams() argument 1054 getSelfType(Context, OID, selfIsPseudoStrong, selfIsConsumed); in createImplicitParams()
|
/external/u-boot/lib/ |
D | oid_registry.c | 29 enum OID look_up_OID(const void *data, size_t datasize) in look_up_OID() 32 enum OID oid; in look_up_OID() 167 int sprint_OID(enum OID oid, char *buffer, size_t bufsize) in sprint_OID()
|
/external/u-boot/drivers/usb/gadget/ |
D | rndis.c | 143 static int gen_ndis_query_resp(int configNr, u32 OID, u8 *buf, in gen_ndis_query_resp() argument 162 debug("query OID %08x value, len %d:\n", OID, buf_len); in gen_ndis_query_resp() 178 switch (OID) { in gen_ndis_query_resp() 634 debug("%s: query unknown OID 0x%08X\n", __func__, OID); in gen_ndis_query_resp() 645 static int gen_ndis_set_resp(u8 configNr, u32 OID, u8 *buf, u32 buf_len, in gen_ndis_set_resp() argument 663 debug("set OID %08x value, len %d:\n", OID, buf_len); in gen_ndis_set_resp() 675 switch (OID) { in gen_ndis_set_resp() 758 __func__, OID, buf_len); in gen_ndis_set_resp() 812 debug("%s: OID = %08X\n", __func__, get_unaligned_le32(&buf->OID)); in rndis_query_response() 831 if (gen_ndis_query_resp(configNr, get_unaligned_le32(&buf->OID), in rndis_query_response() [all …]
|
D | rndis.h | 111 __le32 OID; member 130 __le32 OID; member
|
/external/boringssl/src/crypto/obj/ |
D | README | 9 obj_mac.num is the list of NID values for each OID. This is an input/output 15 along with lookup tables for search by short name, OID, etc.
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.runtime.pass.cpp | 31 template <int OID> 32 GenericConvertingDeleter(GenericConvertingDeleter<OID>) {} in GenericConvertingDeleter()
|
D | move_convert.pass.cpp | 32 template <int OID> 33 GenericConvertingDeleter(GenericConvertingDeleter<OID>) {} in GenericConvertingDeleter()
|
/external/python/cpython3/Lib/test/ |
D | secp384r1.pem | 6 ASN1 OID: secp384r1
|
/external/python/asn1crypto/ |
D | changelog.md | 35 `"rsaes_pkcs1v15"` for OID `1.2.840.113549.1.1.1` instead of `"rsa"` 105 map the OID 123 algorithm OID 174 - Added support for `2.16.840.1.113894.746875.1.1` OID to 194 - Added the OID for unique identifier to `x509.NameType` 207 - Fix `x509.Name.build()` to properly handle dotted OID type values 257 - Add support for the OID `1.2.840.113549.1.9.16.2.14` to 318 unknown OID is encountered 329 mapping a unicode string name to an OID. Previously there were multiple OIDs
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 33 template <int OID> 34 GenericConvertingDeleter(GenericConvertingDeleter<OID>) {} in GenericConvertingDeleter() 36 template <int OID> 37 GenericConvertingDeleter& operator=(GenericConvertingDeleter<OID> const&) { in operator =()
|
/external/u-boot/lib/crypto/ |
D | pkcs7_parser.h | 61 enum OID data_type; /* Type of Data */
|
D | x509_cert_parser.c | 32 enum OID key_algo; /* Public key algorithm */ 33 enum OID last_oid; /* Last OID encountered */ 34 enum OID algo_oid; /* Algorithm OID */
|
D | pkcs7_parser.c | 36 enum OID last_oid; /* Last OID encountered */ 483 enum OID content_type;
|
/external/u-boot/include/crypto/ |
D | public_key.h | 29 enum OID algo;
|
/external/python/cryptography/docs/development/ |
D | test-vectors.rst | 199 `unknown signature OID`_ Mozilla bug that uses an alternate signature OID for 203 * ``bigoid.pem`` - A certificate with a rather long OID in the 231 an embedded OID defining the curve. 249 containing an unsupported extension type. The OID was encoded as 256 certificate containing an unsupported extension type marked critical. The OID 369 is an unknown OID (``1.3.6.1.4.1.8432.1.1.2``). 398 extension type. The OID was encoded as "1.2.3.4" with an 402 extension type marked critical. The OID was encoded as "1.2.3.4" 416 revocation with an unsupported, non-critical entry extension with the OID 421 which contains an unsupported critical entry extension with the OID value set [all …]
|
/external/python/asn1crypto/docs/ |
D | universal_types.md | 28 - [Specification via OID](#specification-via-oid) 357 it will be more maintainable to map the OID strings to a unicode string 358 containing a description of what the OID repesents. 360 The mapping of OID strings to name strings is configured via the `_map` 361 property, which is a `dict` object with keys being unicode OID string and the 365 integer form of the OID. 561 ## Specification via OID
|