HomeSort by relevance Sort by last modified time
    Searched refs:CertPathValidatorException (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /libcore/ojluni/src/main/java/java/security/cert/
CertPathChecker.java 51 * @throws CertPathValidatorException if this {@code CertPathChecker} is
54 void init(boolean forward) throws CertPathValidatorException;
73 * @throws CertPathValidatorException if the specified certificate does
76 void check(Certificate cert) throws CertPathValidatorException;
PKIXReason.java 32 * {@code CertPathValidatorException.BasicReason} enumeration.
36 public enum PKIXReason implements CertPathValidatorException.Reason {
PKIXCertPathChecker.java 110 * @throws CertPathValidatorException if this
117 throws CertPathValidatorException;
161 * @exception CertPathValidatorException if the specified certificate does
166 throws CertPathValidatorException;
175 public void check(Certificate cert) throws CertPathValidatorException {
CertPathValidatorSpi.java 76 * @exception CertPathValidatorException if the {@code CertPath}
84 throws CertPathValidatorException, InvalidAlgorithmParameterException;
CertPathValidatorException.java 37 * A {@code CertPathValidatorException} provides support for wrapping
41 * A {@code CertPathValidatorException} may also include the
62 public class CertPathValidatorException extends GeneralSecurityException {
84 * Creates a {@code CertPathValidatorException} with
87 public CertPathValidatorException() {
92 * Creates a {@code CertPathValidatorException} with the given
98 public CertPathValidatorException(String msg) {
103 * Creates a {@code CertPathValidatorException} that wraps the
105 * {@code CertPathValidatorException}, while retaining information
115 public CertPathValidatorException(Throwable cause)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
State.java 31 import java.security.cert.CertPathValidatorException;
51 throws CertificateException, IOException, CertPathValidatorException;
ConstraintsChecker.java 31 import java.security.cert.CertPathValidatorException;
76 public void init(boolean forward) throws CertPathValidatorException {
82 throw new CertPathValidatorException
110 * @throws CertPathValidatorException if the specified certificate
115 throws CertPathValidatorException
135 throws CertPathValidatorException
154 throw new CertPathValidatorException(msg + " check failed",
158 throw new CertPathValidatorException(ioe);
174 throws CertPathValidatorException
180 throw new CertPathValidatorException(ce)
    [all...]
BasicChecker.java 39 import java.security.cert.CertPathValidatorException;
40 import java.security.cert.CertPathValidatorException.BasicReason;
101 public void init(boolean forward) throws CertPathValidatorException {
108 throw new CertPathValidatorException("Key parameters missing");
113 CertPathValidatorException("forward checking not supported");
135 * @throws CertPathValidatorException if certificate does not verify
139 throws CertPathValidatorException
156 * @throws CertPathValidatorException if certificate does not verify
159 throws CertPathValidatorException
172 throw new CertPathValidatorException
    [all...]
KeyChecker.java 71 public void init(boolean forward) throws CertPathValidatorException {
75 throw new CertPathValidatorException
103 * @throws CertPathValidatorException if certificate does not verify
107 throws CertPathValidatorException
117 throw new CertPathValidatorException("target certificate " +
142 throws CertPathValidatorException {
159 throw new CertPathValidatorException
RevocationChecker.java 38 import java.security.cert.CertPathValidatorException.BasicReason;
66 private LinkedList<CertPathValidatorException> softFailExceptions =
93 throws CertPathValidatorException
100 throws CertPathValidatorException
119 throw new CertPathValidatorException(
167 throws CertPathValidatorException
175 throw new CertPathValidatorException(
210 throws CertPathValidatorException
218 throw new CertPathValidatorException(
228 throws CertPathValidatorException
    [all...]
AlgorithmChecker.java 46 import java.security.cert.CertPathValidatorException;
47 import java.security.cert.CertPathValidatorException.BasicReason;
176 public void init(boolean forward) throws CertPathValidatorException {
186 CertPathValidatorException("forward checking not supported");
205 throws CertPathValidatorException {
215 throw new CertPathValidatorException(
250 throw new CertPathValidatorException(
277 throw new CertPathValidatorException(ce);
290 throw new CertPathValidatorException(
297 throw new CertPathValidatorException(
    [all...]
OCSP.java 34 import java.security.cert.CertPathValidatorException;
35 import java.security.cert.CertPathValidatorException.BasicReason;
111 * @throws CertPathValidatorException if an exception occurs while
116 throws IOException, CertPathValidatorException {
123 throw new CertPathValidatorException
128 throw new CertPathValidatorException
149 * @throws CertPathValidatorException if an exception occurs while
157 throws IOException, CertPathValidatorException
169 throws IOException, CertPathValidatorException
176 throw new CertPathValidatorException
    [all...]
PKIXMasterCertPathValidator.java 35 import java.security.cert.CertPathValidatorException;
62 * @throws CertPathValidatorException if cert path does not validate
67 throws CertPathValidatorException
132 } catch (CertPathValidatorException cpve) {
133 throw new CertPathValidatorException(cpve.getMessage(),
140 throw new CertPathValidatorException("unrecognized " +
PKIXCertPathValidator.java 69 * @throws CertPathValidatorException if cert path does not validate.
76 throws CertPathValidatorException, InvalidAlgorithmParameterException
83 throws CertPathValidatorException
110 CertPathValidatorException lastException = null;
141 } catch (CertPathValidatorException cpe) {
153 throw new CertPathValidatorException
160 throws CertPathValidatorException
204 throw new CertPathValidatorException(
PolicyChecker.java 32 import java.security.cert.CertPathValidatorException;
115 * @throws CertPathValidatorException if user wants to enable forward
119 public void init(boolean forward) throws CertPathValidatorException {
121 throw new CertPathValidatorException
173 * @throws CertPathValidatorException if the certificate does not verify
177 throws CertPathValidatorException
194 * @exception CertPathValidatorException Exception thrown if
198 throws CertPathValidatorException
220 throw new CertPathValidatorException(ce);
264 * @exception CertPathValidatorException Exception thrown if an erro
    [all...]
OCSPResponse.java 32 import java.security.cert.CertPathValidatorException;
33 import java.security.cert.CertPathValidatorException.BasicReason;
392 throws CertPathValidatorException
399 throw new CertPathValidatorException(
404 throw new CertPathValidatorException("OCSP response error: " +
416 throw new CertPathValidatorException(
436 throw new CertPathValidatorException(
503 throw new CertPathValidatorException(
509 throw new CertPathValidatorException(
529 throw new CertPathValidatorException(
    [all...]
ForwardState.java 30 import java.security.cert.CertPathValidatorException;
136 throws CertPathValidatorException
163 throws CertificateException, IOException, CertPathValidatorException {
214 throw new CertPathValidatorException(e);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertPathValidatorSpi.java 28 import java.security.cert.CertPathValidatorException;
41 CertPathParameters params) throws CertPathValidatorException,
46 throw new CertPathValidatorException("certPath null");
  /libcore/luni/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java 31 import java.security.cert.CertPathValidatorException;
32 import java.security.cert.CertPathValidatorException.BasicReason;
42 * Tests for <code>CertPathValidatorException</code> class constructors and
56 * Test for <code>CertPathValidatorException()</code> constructor
57 * Assertion: constructs CertPathValidatorException with no detail message
60 CertPathValidatorException tE = new CertPathValidatorException();
66 * Test for <code>CertPathValidatorException(String)</code> constructor
67 * Assertion: constructs CertPathValidatorException with detail message msg.
71 CertPathValidatorException tE
    [all...]
PKIXCertPathCheckerTest.java 27 import java.security.cert.CertPathValidatorException;
69 throws CertPathValidatorException {
77 public final void testCheck() throws CertPathValidatorException {
91 throws CertPathValidatorException {
100 public void init(boolean forward) throws CertPathValidatorException {
CertPathValidator2Test.java 39 import java.security.cert.CertPathValidatorException;
80 private void checkResult(CertPathValidator certV) throws CertPathValidatorException,
94 } catch (CertPathValidatorException e) {
109 InvalidAlgorithmParameterException, CertPathValidatorException {
143 CertPathValidatorException {
200 InvalidAlgorithmParameterException, CertPathValidatorException {
241 } catch (CertPathValidatorException e) {
249 } catch (CertPathValidatorException e) {
257 } catch (CertPathValidatorException e) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 4 import java.security.cert.CertPathValidatorException;
43 * @throws CertPathValidatorException if the specified attribute certificate
48 throws CertPathValidatorException;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathValidatorException.java 4 import java.security.cert.CertPathValidatorException;
7 extends CertPathValidatorException
  /libcore/ojluni/src/main/java/sun/security/util/
DisabledAlgorithmConstraints.java 31 import java.security.cert.CertPathValidatorException;
32 import java.security.cert.CertPathValidatorException.BasicReason;
139 CertConstraintParameters cp) throws CertPathValidatorException {
148 X509Certificate cert) throws CertPathValidatorException {
193 CertConstraintParameters cp) throws CertPathValidatorException {
200 throw new CertPathValidatorException(
208 throw new CertPathValidatorException(
345 throws CertPathValidatorException {
426 throws CertPathValidatorException;
444 throws CertPathValidatorException {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathValidatorSpi.java 10 import java.security.cert.CertPathValidatorException;
57 throws CertPathValidatorException,
106 throw new CertPathValidatorException("Certification path is empty.", null, certPath, -1);
119 throw new CertPathValidatorException(e.getMessage(), e, certPath, 0);
146 throw new CertPathValidatorException(e.getMessage(), e, certPath, certs.size() - 1);
151 throw new CertPathValidatorException("Trust anchor for certification path not found.", null, certPath, -1);
265 catch (CertPathValidatorException e)
309 throw new CertPathValidatorException(e.getMessage(), e, certPath, index);
352 throw new CertPathValidatorException("Version 1 certificates can't be used as CA ones.", null,
425 catch (CertPathValidatorException e
    [all...]

Completed in 1579 milliseconds

1 2 3 4