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

  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 77 private static Hashtable keyAlgorithms = new Hashtable();
181 keyAlgorithms.put(PKCSObjectIdentifiers.rsaEncryption, "RSA");
182 keyAlgorithms.put(X9ObjectIdentifiers.id_dsa, "DSA");
460 if (keyAlgorithms.get(keyAlg.getObjectId()) != null)
462 String keyAlgorithm = (String)keyAlgorithms.get(keyAlg.getObjectId());
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 217 private String[] keyAlgorithms = { "RSA" };
239 public Builder keyAlgorithms(String... keyAlgorithms) {
240 this.keyAlgorithms = keyAlgorithms;
324 for (String keyAlgorithm : keyAlgorithms) {
    [all...]

Completed in 2224 milliseconds