HomeSort by relevance Sort by last modified time
    Searched refs:X9ObjectIdentifiers (Results 1 - 11 of 11) sorted by null

  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 36 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
99 algorithms.put("SHA1WITHECDSA", X9ObjectIdentifiers.ecdsa_with_SHA1);
100 algorithms.put("SHA224WITHECDSA", X9ObjectIdentifiers.ecdsa_with_SHA224);
101 algorithms.put("SHA256WITHECDSA", X9ObjectIdentifiers.ecdsa_with_SHA256);
102 algorithms.put("SHA384WITHECDSA", X9ObjectIdentifiers.ecdsa_with_SHA384);
103 algorithms.put("SHA512WITHECDSA", X9ObjectIdentifiers.ecdsa_with_SHA512);
104 algorithms.put("ECDSAWITHSHA1", X9ObjectIdentifiers.ecdsa_with_SHA1);
127 oids.put(X9ObjectIdentifiers.ecdsa_with_SHA1, "SHA1WITHECDSA");
128 oids.put(X9ObjectIdentifiers.ecdsa_with_SHA224, "SHA224WITHECDSA");
129 oids.put(X9ObjectIdentifiers.ecdsa_with_SHA256, "SHA256WITHECDSA")
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/util/
PublicKeyFactory.java 29 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
70 || algId.getObjectId().equals(X9ObjectIdentifiers.dhpublicnumber))
86 else if (algId.getObjectId().equals(X9ObjectIdentifiers.id_dsa)
95 // else if (algId.getObjectId().equals(X9ObjectIdentifiers.id_ecPublicKey))
PrivateKeyFactory.java 27 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
89 else if (algId.getObjectId().equals(X9ObjectIdentifiers.id_dsa))
97 // else if (algId.getObjectId().equals(X9ObjectIdentifiers.id_ecPublicKey))
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEDHPublicKey.java 19 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
95 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.dhpublicnumber, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(y));
JDKDSAPublicKey.java 15 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
84 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(y));
JDKDSAPrivateKey.java 19 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
90 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(getX()));
X509SignatureUtil.java 21 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
77 if (sigAlgId.getObjectId().equals(X9ObjectIdentifiers.ecdsa_with_SHA2))
WrapCipherSpi.java 35 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
349 // if (oid.equals(X9ObjectIdentifiers.id_ecPublicKey))
357 // else if (oid.equals(X9ObjectIdentifiers.id_dsa))
360 if (oid.equals(X9ObjectIdentifiers.id_dsa))
369 else if (oid.equals(X9ObjectIdentifiers.dhpublicnumber))
JDKKeyFactory.java 39 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
207 else if (algOid.equals(X9ObjectIdentifiers.dhpublicnumber))
217 else if (algOid.equals(X9ObjectIdentifiers.id_dsa))
226 // else if (algOid.equals(X9ObjectIdentifiers.id_ecPublicKey))
277 else if (algOid.equals(X9ObjectIdentifiers.id_dsa))
282 // else if (algOid.equals(X9ObjectIdentifiers.id_ecPublicKey))
BouncyCastleProvider.java 11 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x9/
X9ObjectIdentifiers.java 5 public interface X9ObjectIdentifiers

Completed in 495 milliseconds