Home
last modified time | relevance | path

Searched full:oid (Results 1 – 25 of 558) sorted by relevance

12345678910>>...23

/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x9/
DX9ObjectIdentifiers.java18 /** Base OID: 1.2.840.10045 */
21 /** OID: 1.2.840.10045.1 */
24 /** OID: 1.2.840.10045.1.1 */
27 /** OID: 1.2.840.10045.1.2 */
30 /** OID: 1.2.840.10045.1.2.3.1 */
33 /** OID: 1.2.840.10045.1.2.3.2 */
36 /** OID: 1.2.840.10045.1.2.3.3 */
39 /** OID: 1.2.840.10045.4 */
42 /** OID: 1.2.840.10045.4.1 */
45 /** OID: 1.2.840.10045.2 */
[all …]
DECNamedCurveTable.java83 ASN1ObjectIdentifier oid = X962NamedCurves.getOID(name); in getOID() local
85 if (oid == null) in getOID()
87 oid = SECNamedCurves.getOID(name); in getOID()
90 if (oid == null) in getOID()
92 oid = NISTNamedCurves.getOID(name); in getOID()
97 if (oid == null) in getOID()
99 oid = TeleTrusTNamedCurves.getOID(name); in getOID()
102 if (oid == null) in getOID()
104 oid = ANSSINamedCurves.getOID(name); in getOID()
107 if (oid == null) in getOID()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX9ObjectIdentifiers.java15 /** Base OID: 1.2.840.10045 */
18 /** OID: 1.2.840.10045.1 */
21 /** OID: 1.2.840.10045.1.1 */
24 /** OID: 1.2.840.10045.1.2 */
27 /** OID: 1.2.840.10045.1.2.3.1 */
30 /** OID: 1.2.840.10045.1.2.3.2 */
33 /** OID: 1.2.840.10045.1.2.3.3 */
36 /** OID: 1.2.840.10045.4 */
39 /** OID: 1.2.840.10045.4.1 */
42 /** OID: 1.2.840.10045.2 */
[all …]
DECNamedCurveTable.java81 ASN1ObjectIdentifier oid = X962NamedCurves.getOID(name); in getOID() local
83 if (oid == null) in getOID()
85 oid = SECNamedCurves.getOID(name); in getOID()
88 if (oid == null) in getOID()
90 oid = NISTNamedCurves.getOID(name); in getOID()
95 if (oid == null) in getOID()
97 oid = TeleTrusTNamedCurves.getOID(name); in getOID()
100 if (oid == null) in getOID()
102 oid = ANSSINamedCurves.getOID(name); in getOID()
105 if (oid == null) in getOID()
[all …]
/external/wpa_supplicant_8/src/tls/
Dx509v3.c210 if (asn1_get_oid(pos, end - pos, &id->oid, &pos)) in x509_parse_algorithm_identifier()
297 struct asn1_oid oid; in x509_parse_name() local
356 if (asn1_get_oid(seq_pos, seq_end - seq_pos, &oid, &seq_pos)) { in x509_parse_name()
378 if (oid.len == 4 && in x509_parse_name()
379 oid.oid[0] == 2 && oid.oid[1] == 5 && oid.oid[2] == 4) { in x509_parse_name()
381 switch (oid.oid[3]) { in x509_parse_name()
407 } else if (oid.len == 7 && in x509_parse_name()
408 oid.oid[0] == 1 && oid.oid[1] == 2 && in x509_parse_name()
409 oid.oid[2] == 840 && oid.oid[3] == 113549 && in x509_parse_name()
410 oid.oid[4] == 1 && oid.oid[5] == 9 && in x509_parse_name()
[all …]
Dasn1.c16 .oid = { 1, 3, 14, 3, 2, 26 },
21 .oid = { 2, 16, 840, 1, 101, 3, 4, 2, 1 },
26 .oid = { 1, 2, 840, 10045, 2, 1 },
31 .oid = { 1, 2, 840, 10045, 3, 1, 7 },
36 .oid = { 1, 3, 132, 0, 34 },
41 .oid = { 1, 3, 132, 0, 35 },
46 .oid = { 1, 3, 36, 3, 3, 2, 8, 1, 1, 7 },
51 .oid = { 1, 3, 36, 3, 3, 2, 8, 1, 1, 11 },
56 .oid = { 1, 3, 36, 3, 3, 2, 8, 1, 1, 13 },
61 .oid = { 1, 2, 840, 113549, 1, 9, 16, 3, 22 },
[all …]
Dtlsv1_cred.c335 static int oid_is_rsadsi(struct asn1_oid *oid) in oid_is_rsadsi() argument
337 return oid->len >= 4 && in oid_is_rsadsi()
338 oid->oid[0] == 1 /* iso */ && in oid_is_rsadsi()
339 oid->oid[1] == 2 /* member-body */ && in oid_is_rsadsi()
340 oid->oid[2] == 840 /* us */ && in oid_is_rsadsi()
341 oid->oid[3] == 113549 /* rsadsi */; in oid_is_rsadsi()
345 static int pkcs12_is_bagtype_oid(struct asn1_oid *oid, unsigned long type) in pkcs12_is_bagtype_oid() argument
347 return oid->len == 9 && in pkcs12_is_bagtype_oid()
348 oid_is_rsadsi(oid) && in pkcs12_is_bagtype_oid()
349 oid->oid[4] == 1 /* pkcs */ && in pkcs12_is_bagtype_oid()
[all …]
Dpkcs5.c38 static int oid_is_rsadsi(struct asn1_oid *oid) in oid_is_rsadsi() argument
40 return oid->len >= 4 && in oid_is_rsadsi()
41 oid->oid[0] == 1 /* iso */ && in oid_is_rsadsi()
42 oid->oid[1] == 2 /* member-body */ && in oid_is_rsadsi()
43 oid->oid[2] == 840 /* us */ && in oid_is_rsadsi()
44 oid->oid[3] == 113549 /* rsadsi */; in oid_is_rsadsi()
48 static int pkcs5_is_oid(struct asn1_oid *oid, unsigned long alg) in pkcs5_is_oid() argument
50 return oid->len == 7 && in pkcs5_is_oid()
51 oid_is_rsadsi(oid) && in pkcs5_is_oid()
52 oid->oid[4] == 1 /* pkcs */ && in pkcs5_is_oid()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
DSECObjectIdentifiers.java18 /** Base OID: 1.3.132.0 */
21 /** sect163k1 OID: 1.3.132.0.1 */
23 /** sect163r1 OID: 1.3.132.0.2 */
25 /** sect239k1 OID: 1.3.132.0.3 */
27 /** sect113r1 OID: 1.3.132.0.4 */
29 /** sect113r2 OID: 1.3.132.0.5 */
31 /** secp112r1 OID: 1.3.132.0.6 */
33 /** secp112r2 OID: 1.3.132.0.7 */
35 /** secp160r1 OID: 1.3.132.0.8 */
37 /** secp160k1 OID: 1.3.132.0.9 */
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/sec/
DSECObjectIdentifiers.java20 /** Base OID: 1.3.132.0 */
23 /** sect163k1 OID: 1.3.132.0.1 */
25 /** sect163r1 OID: 1.3.132.0.2 */
27 /** sect239k1 OID: 1.3.132.0.3 */
29 /** sect113r1 OID: 1.3.132.0.4 */
31 /** sect113r2 OID: 1.3.132.0.5 */
33 /** secp112r1 OID: 1.3.132.0.6 */
35 /** secp112r2 OID: 1.3.132.0.7 */
37 /** secp160r1 OID: 1.3.132.0.8 */
39 /** secp160k1 OID: 1.3.132.0.9 */
[all …]
/external/u-boot/lib/
Doid_registry.c2 /* ASN.1 Object identifier (OID) registry
20 MODULE_DESCRIPTION("OID Registry");
25 * look_up_OID - Find an OID registration for the specified data
26 * @data: Binary representation of the OID
29 enum OID look_up_OID(const void *data, size_t datasize) in look_up_OID()
32 enum OID oid; in look_up_OID() local
37 /* Hash the OID data */ in look_up_OID()
45 /* Binary search the OID registry. OIDs are stored in ascending order in look_up_OID()
64 oid = oid_search_table[j].oid; in look_up_OID()
65 len = oid_index[oid + 1] - oid_index[oid]; in look_up_OID()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DAsymmetricAlgorithmProvider.java13 ASN1ObjectIdentifier oid) in addSignatureAlgorithm() argument
16 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlgorithm()
17 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlgorithm()
25 ASN1ObjectIdentifier oid) in addSignatureAlgorithm() argument
36 provider.addAlgorithm("Alg.Alias.Signature." + oid, mainName); in addSignatureAlgorithm()
37 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, mainName); in addSignatureAlgorithm()
40 …protected void registerOid(ConfigurableProvider provider, ASN1ObjectIdentifier oid, String name, A… in registerOid() argument
42 provider.addAlgorithm("Alg.Alias.KeyFactory." + oid, name); in registerOid()
43 provider.addAlgorithm("Alg.Alias.KeyPairGenerator." + oid, name); in registerOid()
45 provider.addKeyInfoConverter(oid, keyFactory); in registerOid()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/util/
DAsymmetricAlgorithmProvider.java17 ASN1ObjectIdentifier oid) in addSignatureAlgorithm() argument
20 provider.addAlgorithm("Alg.Alias.Signature." + oid, algorithm); in addSignatureAlgorithm()
21 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, algorithm); in addSignatureAlgorithm()
29 ASN1ObjectIdentifier oid) in addSignatureAlgorithm() argument
40 provider.addAlgorithm("Alg.Alias.Signature." + oid, mainName); in addSignatureAlgorithm()
41 provider.addAlgorithm("Alg.Alias.Signature.OID." + oid, mainName); in addSignatureAlgorithm()
44 …protected void registerOid(ConfigurableProvider provider, ASN1ObjectIdentifier oid, String name, A… in registerOid() argument
46 provider.addAlgorithm("Alg.Alias.KeyFactory." + oid, name); in registerOid()
47 provider.addAlgorithm("Alg.Alias.KeyPairGenerator." + oid, name); in registerOid()
49 provider.addKeyInfoConverter(oid, keyFactory); in registerOid()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/eac/
DEACObjectIdentifiers.java29 * OID: 0.4.0.127.0.7
39 * OID: 0.4.0.127.0.7.2.2.1
43 /** OID: 0.4.0.127.0.7.2.2.1.1 */
45 /** OID: 0.4.0.127.0.7.2.2.1.2 */
54 * OID: 0.4.0.127.0.7.2.2.3
57 /** OID: 0.4.0.127.0.7.2.2.3.1 */
59 /** OID: 0.4.0.127.0.7.2.2.3.1.1 */
61 /** OID: 0.4.0.127.0.7.2.2.3.2 */
63 /** OID: 0.4.0.127.0.7.2.2.3.2.1 */
72 * OID: 0.4.0.127.0.7.2.2.2
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/eac/
DEACObjectIdentifiers.java27 * OID: 0.4.0.127.0.7
37 * OID: 0.4.0.127.0.7.2.2.1
41 /** OID: 0.4.0.127.0.7.2.2.1.1 */
43 /** OID: 0.4.0.127.0.7.2.2.1.2 */
52 * OID: 0.4.0.127.0.7.2.2.3
55 /** OID: 0.4.0.127.0.7.2.2.3.1 */
57 /** OID: 0.4.0.127.0.7.2.2.3.1.1 */
59 /** OID: 0.4.0.127.0.7.2.2.3.2 */
61 /** OID: 0.4.0.127.0.7.2.2.3.2.1 */
70 * OID: 0.4.0.127.0.7.2.2.2
[all …]
/external/snakeyaml/src/test/resources/issues/
Dissue56-1.yaml2 oid: 1724265
9 oid: 1724276
17 oid: 1724267
32 oid: 2250
42 oid: 1724261
45 oid: 1724263
50 oid: 1724260
60 oid: 1724270
65 oid: 19094
72 oid: 1727992
[all …]
/external/openssh/
Dgss-genr.c49 /* Check that the OID in a data stream matches that in the context */
53 return (ctx != NULL && ctx->oid != GSS_C_NO_OID && in ssh_gssapi_check_oid()
54 ctx->oid->length == len && in ssh_gssapi_check_oid()
55 memcmp(ctx->oid->elements, data, len) == 0); in ssh_gssapi_check_oid()
58 /* Set the contexts OID from a data stream */
62 if (ctx->oid != GSS_C_NO_OID) { in ssh_gssapi_set_oid_data()
63 free(ctx->oid->elements); in ssh_gssapi_set_oid_data()
64 free(ctx->oid); in ssh_gssapi_set_oid_data()
66 ctx->oid = xcalloc(1, sizeof(gss_OID_desc)); in ssh_gssapi_set_oid_data()
67 ctx->oid->length = len; in ssh_gssapi_set_oid_data()
[all …]
/external/python/cryptography/src/cryptography/x509/
Dname.py12 from cryptography.x509.oid import NameOID, ObjectIdentifier
76 def __init__(self, oid, value, _type=_SENTINEL): argument
77 if not isinstance(oid, ObjectIdentifier):
79 "oid argument must be an ObjectIdentifier instance."
88 oid == NameOID.COUNTRY_NAME or
89 oid == NameOID.JURISDICTION_COUNTRY_NAME
99 # The appropriate ASN1 string type varies by OID and is defined across
103 # to look up whether the OID has a non-UTF8 type. If it does, set it
106 _type = _NAMEOID_DEFAULT_TYPE.get(oid, _ASN1Type.UTF8String)
111 self._oid = oid
[all …]
/external/arm-trusted-firmware/tools/cert_create/src/tbbr/
Dtbb_ext.c24 .oid = TRUSTED_FW_NVCOUNTER_OID,
34 .oid = NON_TRUSTED_FW_NVCOUNTER_OID,
44 .oid = TRUSTED_BOOT_FW_HASH_OID,
53 .oid = TRUSTED_BOOT_FW_CONFIG_HASH_OID,
63 .oid = HW_CONFIG_HASH_OID,
73 .oid = TRUSTED_WORLD_PK_OID,
81 .oid = NON_TRUSTED_WORLD_PK_OID,
89 .oid = SCP_FW_CONTENT_CERT_PK_OID,
97 .oid = SCP_FW_HASH_OID,
106 .oid = SOC_FW_CONTENT_CERT_PK_OID,
[all …]
/external/angle/doc/
DdEQP-Charts.md11 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=2017908944&format=i…
13 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=1311087567&format=i…
15 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=786488695&format=in…
17 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=485763259&format=in…
23 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=1224536816&format=i…
25 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=470578632&format=in…
27 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=304442659&format=in…
29 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=907538347&format=in…
33 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=1264555977&format=i…
35 …SuEYeJfIdhYF8EZzASSA7M3nZeLL54i-7iAfEMx0kX7SF_CiwU7DrX8THgn6VKX8a/pubchart?oid=884611147&format=in…
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DX500NameStyle.java19 * @param oid the OID associated with the value in the DN.
23 ASN1Encodable stringToValue(ASN1ObjectIdentifier oid, String value); in stringToValue() argument
26 * Return the OID associated with the passed in name.
29 * @return an OID
65 * Return the display name for toString() associated with the OID.
67 * @param oid the OID of interest.
70 String oidToDisplayName(ASN1ObjectIdentifier oid); in oidToDisplayName() argument
73 * Return the acceptable names in a String DN that map to OID.
75 * @param oid the OID of interest.
76 * @return an array of String aliases for the OID, zero length if there are none.
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DExtensionsGenerator.java30 * Add an extension with the given oid and the passed in value to be included
33 * @param oid OID for the extension.
38 ASN1ObjectIdentifier oid, in addExtension() argument
43 this.addExtension(oid, critical, value.toASN1Primitive().getEncoded(ASN1Encoding.DER)); in addExtension()
47 * Add an extension with the given oid and the passed in byte array to be wrapped in the
50 * @param oid OID for the extension.
55 ASN1ObjectIdentifier oid, in addExtension() argument
59 if (extensions.containsKey(oid)) in addExtension()
61 throw new IllegalArgumentException("extension " + oid + " already added"); in addExtension()
64 extOrdering.addElement(oid); in addExtension()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/
DX500NameStyle.java21 * @param oid the OID associated with the value in the DN.
25 ASN1Encodable stringToValue(ASN1ObjectIdentifier oid, String value); in stringToValue() argument
28 * Return the OID associated with the passed in name.
31 * @return an OID
67 * Return the display name for toString() associated with the OID.
69 * @param oid the OID of interest.
72 String oidToDisplayName(ASN1ObjectIdentifier oid); in oidToDisplayName() argument
75 * Return the acceptable names in a String DN that map to OID.
77 * @param oid the OID of interest.
78 * @return an array of String aliases for the OID, zero length if there are none.
[all …]
/external/libcups/cups/
Dsnmp.c42 unsigned length, int *oid, int oidsize);
58 const int *oid);
63 static unsigned asn1_size_oid(const int *oid);
83 * '_cupsSNMPCopyOID()' - Copy an OID.
88 int * /* O - New OID */
89 _cupsSNMPCopyOID(int *dst, /* I - Destination OID */ in _cupsSNMPCopyOID()
90 const int *src, /* I - Source OID */ in _cupsSNMPCopyOID()
154 * '_cupsSNMPIsOID()' - Test whether a SNMP response contains the specified OID.
156 * The array pointed to by "oid" is terminated by the value -1.
161 const int *oid) /* I - OID */ in _cupsSNMPIsOID() argument
[all …]
/external/python/cpython2/Lib/idlelib/
Drpc.py157 def register(self, oid, object): argument
158 self.objtable[oid] = object
160 def unregister(self, oid): argument
162 del self.objtable[oid]
169 how, (oid, methodname, args, kwargs) = request
172 if oid not in self.objtable:
173 return ("ERROR", "Unknown object id: %r" % (oid,))
174 obj = self.objtable[oid]
204 print>>sys.__stderr__, msg % (oid, method, args)
208 def remotecall(self, oid, methodname, args, kwargs): argument
[all …]

12345678910>>...23