Searched refs:forward (Results 1 - 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/java/security/cert/
H A DCertPathChecker.java44 * <p>The {@code forward} flag specifies the order that certificates will
45 * be passed to the {@link #check check} method (forward or reverse).
47 * @param forward the order that certificates are presented to the
49 * presented from target to trust anchor (forward); if
54 void init(boolean forward) throws CertPathValidatorException; argument
57 * Indicates if forward checking is supported. Forward checking refers
60 * forward direction (from target to trust anchor).
62 * @return {@code true} if forward checking is supported, {@code false}
H A DPKIXCertPathChecker.java62 * {@code PKIXCertPathChecker} may be either in the forward direction
67 * support forward checking (the ability to perform its checks when it is
68 * presented with certificates in the forward direction). The
70 * indicates whether forward checking is supported.
101 * The {@code forward} flag specifies the order that
103 * (forward or reverse). A {@code PKIXCertPathChecker} <b>must</b>
104 * support reverse checking and <b>may</b> support forward checking.
106 * @param forward the order that certificates are presented to
108 * are presented from target to most-trusted CA (forward); if
112 * the specified order; it should never be thrown if the forward fla
116 init(boolean forward) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DX509CertificatePair.java46 * Authorities. The ASN.1 structure is listed below. The forward certificate
49 * issued by this CA to another CA. When both the forward and the reverse
60 * forward [0] Certificate OPTIONAL,
78 private X509Certificate forward; field in class:X509CertificatePair
94 * @param forward The forward component of the certificate pair
100 public X509CertificatePair(X509Certificate forward, X509Certificate reverse) argument
102 if (forward == null && reverse == null) {
107 this.forward = forward;
[all...]
H A DKeyChecker.java71 public void init(boolean forward) throws CertPathValidatorException { argument
72 if (!forward) {
76 ("forward checking not supported");
H A DConstraintsChecker.java76 public void init(boolean forward) throws CertPathValidatorException { argument
77 if (!forward) {
83 ("forward checking not supported");
H A DBasicChecker.java101 public void init(boolean forward) throws CertPathValidatorException { argument
102 if (!forward) {
113 CertPathValidatorException("forward checking not supported");
H A DAlgorithmChecker.java176 public void init(boolean forward) throws CertPathValidatorException { argument
177 // Note that this class does not support forward mode.
178 if (!forward) {
186 CertPathValidatorException("forward checking not supported");
192 // Note that as this class does not support forward mode, the method
H A DPolicyChecker.java113 * @param forward a boolean indicating whether this checker should be
114 * initialized capable of building in the forward direction
115 * @throws CertPathValidatorException if user wants to enable forward
116 * checking and forward checking is not supported.
119 public void init(boolean forward) throws CertPathValidatorException { argument
120 if (forward) {
122 ("forward checking not supported");
132 * Checks if forward checking is supported. Forward checking refers
134 * when presented with certificates in the forward direction (from
137 * @return true if forward checkin
[all...]
H A DRevocationChecker.java299 public void init(boolean forward) throws CertPathValidatorException { argument
300 if (forward) {
302 CertPathValidatorException("forward checking not supported");
/libcore/luni/src/test/java/tests/security/cert/
H A DPKIXCertPathCheckerTest.java100 public void init(boolean forward) throws CertPathValidatorException { argument
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DTestUtils.java202 private boolean forward = false;
216 forward = arg0;
221 return forward;

Completed in 193 milliseconds