/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
JCEDigestUtil.java | 34 private static Map oids = new HashMap(); field in class:JCEDigestUtil 63 oids.put("MD5", PKCSObjectIdentifiers.md5); 64 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5); 66 oids.put("SHA1", OIWObjectIdentifiers.idSHA1); 67 oids.put("SHA-1", OIWObjectIdentifiers.idSHA1); 68 oids.put(OIWObjectIdentifiers.idSHA1.getId(), OIWObjectIdentifiers.idSHA1); 71 // oids.put("SHA224", NISTObjectIdentifiers.id_sha224); 72 // oids.put("SHA-224", NISTObjectIdentifiers.id_sha224); 73 // oids.put(NISTObjectIdentifiers.id_sha224.getId(), NISTObjectIdentifiers.id_sha224); 76 oids.put("SHA256", NISTObjectIdentifiers.id_sha256) [all...] |
X509CRLEntryObject.java | 134 Enumeration e = extensions.oids(); 243 Enumeration e = extensions.oids();
|
X509CertificateObject.java | 386 Enumeration e = extensions.oids(); 455 Enumeration e = extensions.oids(); 483 Enumeration e = extensions.oids(); 652 Enumeration e = extensions.oids();
|
X509CRLObject.java | 117 Enumeration e = extensions.oids(); 387 Enumeration e = extensions.oids();
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/ |
X500NameBuilder.java | 39 public X500NameBuilder addMultiValuedRDN(ASN1ObjectIdentifier[] oids, String[] values) 45 vals[i] = template.stringToValue(oids[i], values[i]); 48 return addMultiValuedRDN(oids, vals); 51 public X500NameBuilder addMultiValuedRDN(ASN1ObjectIdentifier[] oids, ASN1Encodable[] values) 53 AttributeTypeAndValue[] avs = new AttributeTypeAndValue[oids.length]; 55 for (int i = 0; i != oids.length; i++) 57 avs[i] = new AttributeTypeAndValue(oids[i], values[i]);
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/ |
PKCS10CertificationRequest.java | 78 private static Hashtable oids = new Hashtable(); field in class:PKCS10CertificationRequest 146 oids.put(new DERObjectIdentifier("1.2.840.113549.1.1.5"), "SHA1WITHRSA"); 148 // oids.put(PKCSObjectIdentifiers.sha224WithRSAEncryption, "SHA224WITHRSA"); 150 oids.put(PKCSObjectIdentifiers.sha256WithRSAEncryption, "SHA256WITHRSA"); 151 oids.put(PKCSObjectIdentifiers.sha384WithRSAEncryption, "SHA384WITHRSA"); 152 oids.put(PKCSObjectIdentifiers.sha512WithRSAEncryption, "SHA512WITHRSA"); 154 // oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_94, "GOST3411WITHGOST3410"); 155 // oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_2001, "GOST3411WITHECGOST3410"); 158 oids.put(new DERObjectIdentifier("1.2.840.113549.1.1.4"), "MD5WITHRSA"); 161 // oids.put(new DERObjectIdentifier("1.2.840.113549.1.1.2"), "MD2WITHRSA") [all...] |
X509Principal.java | 84 * constructor from a vector of attribute values and a vector of OIDs. 87 Vector oids, 90 super(oids, values); 121 * yielding a DERObjectIdentifier, other than that OID. and numeric oids
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/ |
IETFUtils.java | 46 Vector oids = new Vector(); local 49 oids.addElement(oid); 60 oids.addElement(x500Style.attrNameToOID(nm)); 64 builder.addMultiValuedRDN(toOIDArray(oids), toValueArray(values)); 87 private static ASN1ObjectIdentifier[] toOIDArray(Vector oids) 89 ASN1ObjectIdentifier[] tmp = new ASN1ObjectIdentifier[oids.size()]; 93 tmp[i] = (ASN1ObjectIdentifier)oids.elementAt(i);
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
X509Extensions.java | 350 public Enumeration oids() method in class:X509Extensions 473 ASN1ObjectIdentifier[] oids = new ASN1ObjectIdentifier[oidVec.size()]; local 475 for (int i = 0; i != oids.length; i++) 477 oids[i] = (ASN1ObjectIdentifier)oidVec.elementAt(i); 479 return oids;
|
X509Name.java | 236 * look up table translating common symbols into their OIDS. 247 * look up table translating string values into their OIDS - 467 * construction process. The ordering vector should contain the OIDs 482 * construction process. The ordering vector should contain the OIDs 528 * Takes two vectors one of the oids and the other of the values. 531 Vector oids, 534 this(oids, values, new X509DefaultEntryConverter()); 538 * Takes two vectors one of the oids and the other of the values. 544 Vector oids, 550 if (oids.size() != values.size() [all...] |
/external/openssl/crypto/ocsp/ |
ocsp_ext.c | 453 X509_EXTENSION *OCSP_accept_responses_new(char **oids) 461 while (oids && *oids) 463 if ((nid=OBJ_txt2nid(*oids))!=NID_undef&&(o=OBJ_nid2obj(nid))) 465 oids++; 487 /* per ACCESS_DESCRIPTION parameter are oids, of which there are currently
|
ocsp.h | 483 X509_EXTENSION *OCSP_accept_responses_new(char **oids);
|
/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
X509V2AttributeCertificate.java | 239 Enumeration e = extensions.oids();
|
/external/chromium/net/base/ |
x509_certificate_nss.cc | 438 in_param.value.array.oids = policy_oids; 514 in_param.value.array.oids = &policy; [all...] |
/external/openssl/include/openssl/ |
ocsp.h | 483 X509_EXTENSION *OCSP_accept_responses_new(char **oids);
|