HomeSort by relevance Sort by last modified time
    Searched defs:oids (Results 1 - 5 of 5) sorted by null

  /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...]
  /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...]
  /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...]

Completed in 101 milliseconds