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

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KSPasswordProtectionTest.java 75 * Test for <code>KeyStore.PasswordProtection(char[] password, String protectionAlgorithm,
79 * Assertions: constructor throws NullPointerException if protectionAlgorithm is null.
84 String protectionAlgorithm = "ThisBeautifulAlgorithm";
89 pass, null /* protectionAlgorithm */, protectionParameters);
94 pass, protectionAlgorithm, null /* protectionParameters */);
95 assertSame(protectionAlgorithm, ksPWP.getProtectionAlgorithm());
99 * Test for <code>KeyStore.PasswordProtection(char[] password, String protectionAlgorithm,
112 pass, "protectionAlgorithm", null /* protectionParameters */);
115 pass, "protectionAlgorithm", protectionParameters);
  /libcore/ojluni/src/main/java/java/security/
KeyStore.java 285 private final String protectionAlgorithm;
299 this.protectionAlgorithm = null;
311 * @param protectionAlgorithm the encryption algorithm name, for
320 * @exception NullPointerException if {@code protectionAlgorithm} is
325 public PasswordProtection(char[] password, String protectionAlgorithm,
327 if (protectionAlgorithm == null) {
331 this.protectionAlgorithm = protectionAlgorithm;
352 return protectionAlgorithm;
    [all...]
  /prebuilts/sdk/current/
core.jar 

Completed in 85 milliseconds