Searched defs:ap (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DAlgorithmParametersTest.java77 AlgorithmParameters ap = new DummyAlgorithmParameters(null, p, null);
78 assertNull(ap.getAlgorithm());
81 ap = new DummyAlgorithmParameters(null, p, "AAA");
82 assertEquals("AAA", ap.getAlgorithm());
175 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC");
176 checkUnititialized(ap);
177 ap.init(new MyAlgorithmParameterSpec());
178 checkAP(ap, p);
185 AlgorithmParameters ap = AlgorithmParameters.getInstance(str[i]);
201 AlgorithmParameters ap
664 checkUnititialized(AlgorithmParameters ap) argument
668 checkAP(AlgorithmParameters ap, Provider p) argument
[all...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DEncryptedPrivateKeyInfoTest.java207 if (g.ap() == null) {
210 epki = new EncryptedPrivateKeyInfo(g.ap(), g.ct());
552 AlgorithmParameters ap = null;
557 ap = AlgorithmParameters
560 ap.init(EncryptedPrivateKeyInfoData.getParametersEncoding(
563 new EncryptedPrivateKeyInfo(ap,
572 ap = new Mock_AlgorithmParameters(null, null, "Wrong alg name");
575 new EncryptedPrivateKeyInfo(ap,
609 AlgorithmParameters ap = AlgorithmParameters.getInstance("DSA");
611 ap
1596 private AlgorithmParameters ap = null; field in class:EncryptedPrivateKeyInfoTest.TestDataGenerator
1731 public AlgorithmParameters ap() { method in class:EncryptedPrivateKeyInfoTest.TestDataGenerator
[all...]

Completed in 52 milliseconds