Searched refs:PKIXCertPathChecker (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/test/java/tests/security/cert/
H A DPKIXCertPathCheckerTest.java29 import java.security.cert.PKIXCertPathChecker;
38 * Tests for <code>PKIXCertPathChecker</code>
54 PKIXCertPathChecker pc1 = TestUtils.getTestCertPathChecker();
55 PKIXCertPathChecker pc2 = (PKIXCertPathChecker) pc1.clone();
61 // that are abstract in <code>PKIXCertPathChecker</code>
65 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
70 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
74 PKIXCertPathChecker pc = TestUtils.getTestCertPathChecker();
78 PKIXCertPathChecker p
[all...]
/libcore/luni/src/main/java/java/security/cert/
H A DPKIXCertPathChecker.java30 * {@link PKIXBuilderParameters#addCertPathChecker(PKIXCertPathChecker)
37 * A {@code PKIXCertPathChecker} implementation <u>must</u> support reverse
42 public abstract class PKIXCertPathChecker implements Cloneable { class in inherits:Cloneable
45 * Creates a new {@code PKIXCertPathChecker} instance.
47 protected PKIXCertPathChecker() {} method in class:PKIXCertPathChecker
50 * Clones this {@code PKIXCertPathChecker} instance.
63 * Initializes this {@code PKIXCertPathChecker} instance for specified
72 * if initialization of this {@code PKIXCertPathChecker}
80 * Returns whether this {@code PKIXCertPathChecker} instance supports
83 * @return {@code true} if this {@code PKIXCertPathChecker} instanc
[all...]
H A DPKIXParameters.java51 // List of certification patch checkers (PKIXCertPathChecker)
52 private List<PKIXCertPathChecker> certPathCheckers;
186 public List<PKIXCertPathChecker> getCertPathCheckers() {
189 certPathCheckers = new ArrayList<PKIXCertPathChecker>();
198 ArrayList<PKIXCertPathChecker> modifiableList = new ArrayList<PKIXCertPathChecker>();
199 for (PKIXCertPathChecker certPathChecker : certPathCheckers) {
200 modifiableList.add((PKIXCertPathChecker) certPathChecker.clone());
214 public void setCertPathCheckers(List<PKIXCertPathChecker> certPathCheckers) {
225 this.certPathCheckers = new ArrayList<PKIXCertPathChecker>();
[all...]
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DTestUtils.java47 import java.security.cert.PKIXCertPathChecker;
198 * Creates stub implementation of the <code>PKIXCertPathChecker</code>
200 * @return Stub implementation of the <code>PKIXCertPathChecker</code>
202 public static PKIXCertPathChecker getTestCertPathChecker() {
204 return new PKIXCertPathChecker() {

Completed in 90 milliseconds