HomeSort by relevance Sort by last modified time
    Searched refs:oids (Results 1 - 25 of 38) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
DigestFactory.java 35 private static Map oids = new HashMap(); field in class:DigestFactory
85 oids.put("MD5", PKCSObjectIdentifiers.md5);
86 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5);
88 oids.put("SHA1", OIWObjectIdentifiers.idSHA1);
89 oids.put("SHA-1", OIWObjectIdentifiers.idSHA1);
90 oids.put(OIWObjectIdentifiers.idSHA1.getId(), OIWObjectIdentifiers.idSHA1);
92 oids.put("SHA224", NISTObjectIdentifiers.id_sha224);
93 oids.put("SHA-224", NISTObjectIdentifiers.id_sha224);
94 oids.put(NISTObjectIdentifiers.id_sha224.getId(), NISTObjectIdentifiers.id_sha224);
96 oids.put("SHA256", NISTObjectIdentifiers.id_sha256)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
X500NameBuilder.java 77 * Add a multi-valued RDN made up of the passed in OIDs and associated string values.
79 * @param oids the OIDs making up the RDN.
80 * @param values the string representation of the values the OIDs refer to.
83 public X500NameBuilder addMultiValuedRDN(ASN1ObjectIdentifier[] oids, String[] values)
89 vals[i] = template.stringToValue(oids[i], values[i]);
92 return addMultiValuedRDN(oids, vals);
96 * Add a multi-valued RDN made up of the passed in OIDs and associated ASN.1 values.
98 * @param oids the OIDs making up the RDN
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
OperatorHelper.java 52 private static final Map oids = new HashMap(); field in class:OperatorHelper
63 oids.put(new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"), "SHA1WITHRSA");
64 oids.put(PKCSObjectIdentifiers.sha224WithRSAEncryption, "SHA224WITHRSA");
65 oids.put(PKCSObjectIdentifiers.sha256WithRSAEncryption, "SHA256WITHRSA");
66 oids.put(PKCSObjectIdentifiers.sha384WithRSAEncryption, "SHA384WITHRSA");
67 oids.put(PKCSObjectIdentifiers.sha512WithRSAEncryption, "SHA512WITHRSA");
69 // oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_94, "GOST3411WITHGOST3410");
70 // oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_2001, "GOST3411WITHECGOST3410");
71 // oids.put(BSIObjectIdentifiers.ecdsa_plain_SHA1, "SHA1WITHPLAIN-ECDSA");
72 // oids.put(BSIObjectIdentifiers.ecdsa_plain_SHA224, "SHA224WITHPLAIN-ECDSA")
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/openssl/
CertificateTrustBlock.java 83 Set<ASN1ObjectIdentifier> oids = new HashSet<ASN1ObjectIdentifier>(seq.size()); local
87 oids.add(ASN1ObjectIdentifier.getInstance(en.nextElement()));
90 return oids;
96 private ASN1Sequence toSequence(Set<ASN1ObjectIdentifier> oids)
98 if (oids == null || oids.isEmpty())
105 for (Iterator it = oids.iterator(); it.hasNext();)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
X509Principal.java 95 * constructor from a vector of attribute values and a vector of OIDs.
98 Vector oids,
101 super(oids, values);
132 * yielding a ASN1ObjectIdentifier, other than that OID. and numeric oids
PKCS10CertificationRequest.java 83 private static Hashtable oids = new Hashtable(); field in class:PKCS10CertificationRequest
143 oids.put(new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"), "SHA1WITHRSA");
144 oids.put(PKCSObjectIdentifiers.sha224WithRSAEncryption, "SHA224WITHRSA");
145 oids.put(PKCSObjectIdentifiers.sha256WithRSAEncryption, "SHA256WITHRSA");
146 oids.put(PKCSObjectIdentifiers.sha384WithRSAEncryption, "SHA384WITHRSA");
147 oids.put(PKCSObjectIdentifiers.sha512WithRSAEncryption, "SHA512WITHRSA");
149 // oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_94, "GOST3411WITHGOST3410");
150 // oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_2001, "GOST3411WITHECGOST3410");
153 oids.put(new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"), "MD5WITHRSA");
155 // oids.put(new ASN1ObjectIdentifier("1.2.840.113549.1.1.2"), "MD2WITHRSA")
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Extensions.java 96 public Enumeration oids() method in class:Extensions
214 ASN1ObjectIdentifier[] oids = new ASN1ObjectIdentifier[oidVec.size()]; local
216 for (int i = 0; i != oids.length; i++)
218 oids[i] = (ASN1ObjectIdentifier)oidVec.elementAt(i);
220 return oids;
X509Extensions.java 359 public Enumeration oids() method in class:X509Extensions
469 ASN1ObjectIdentifier[] oids = new ASN1ObjectIdentifier[oidVec.size()]; local
471 for (int i = 0; i != oids.length; i++)
473 oids[i] = (ASN1ObjectIdentifier)oidVec.elementAt(i);
475 return oids;
X509Name.java 242 * look up table translating common symbols into their OIDS.
253 * look up table translating string values into their OIDS -
481 * construction process. The ordering vector should contain the OIDs
496 * construction process. The ordering vector should contain the OIDs
543 * Takes two vectors one of the oids and the other of the values.
547 Vector oids,
550 this(oids, values, new X509DefaultEntryConverter());
554 * Takes two vectors one of the oids and the other of the values.
561 Vector oids,
567 if (oids.size() != values.size()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 155 Vector oids = new Vector(); local
158 oids.addElement(oid);
176 oids.addElement(oid);
180 builder.addMultiValuedRDN(toOIDArray(oids), toValueArray(values));
220 private static ASN1ObjectIdentifier[] toOIDArray(Vector oids)
222 ASN1ObjectIdentifier[] tmp = new ASN1ObjectIdentifier[oids.size()];
226 tmp[i] = (ASN1ObjectIdentifier)oids.elementAt(i);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseAgreementSpi.java 41 private static final Hashtable oids = new Hashtable(); field in class:BaseAgreementSpi
133 oids.put("DESEDE", PKCSObjectIdentifiers.des_EDE3_CBC);
134 oids.put("AES", NISTObjectIdentifiers.id_aes256_CBC);
135 oids.put("DES", OIWObjectIdentifiers.desCBC);
258 if (oids.containsKey(algKey))
260 oidAlgorithm = ((ASN1ObjectIdentifier)oids.get(algKey)).getId();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CRLEntryObject.java 139 Enumeration e = extensions.oids();
272 Enumeration e = extensions.oids();
X509CertificateObject.java 402 Enumeration e = extensions.oids();
471 Enumeration e = extensions.oids();
499 Enumeration e = extensions.oids();
677 Enumeration e = extensions.oids();
X509CRLObject.java 142 Enumeration e = extensions.oids();
468 Enumeration e = extensions.oids();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CRLEntryObject.java 140 Enumeration e = extensions.oids();
273 Enumeration e = extensions.oids();
X509CertificateObject.java 429 Enumeration e = extensions.oids();
498 Enumeration e = extensions.oids();
526 Enumeration e = extensions.oids();
702 Enumeration e = extensions.oids();
X509CRLObject.java 139 Enumeration e = extensions.oids();
465 Enumeration e = extensions.oids();
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_windows.go 158 oids := []*byte{
167 para.RequestedUsage.Usage.Length = uint32(len(oids))
168 para.RequestedUsage.Usage.UsageIdentifiers = &oids[0]
x509.go 229 // OIDs for signature algorithms
    [all...]
x509_test.go 527 oids := []asn1.ObjectIdentifier{
534 for _, oid := range oids {
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
root_windows.go 158 oids := []*byte{
167 para.RequestedUsage.Usage.Length = uint32(len(oids))
168 para.RequestedUsage.Usage.UsageIdentifiers = &oids[0]
x509.go 229 // OIDs for signature algorithms
    [all...]
x509_test.go 527 oids := []asn1.ObjectIdentifier{
534 for _, oid := range oids {
    [all...]
  /external/libcups/cups/
auth.c 85 gss_cred_id_t creds, gss_OID_set oids,
479 gss_OID_set oids, /* I - Mechanism OIDs (unused) */
493 gss_release_oid_set(&min, &oids);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 240 Enumeration e = extensions.oids();

Completed in 1740 milliseconds

1 2