Searched refs:CertPathValidatorException (Results 1 - 25 of 59) sorted by relevance

123

/openjdk9/jdk/src/java.base/share/classes/java/security/cert/
H A DCertPathChecker.java51 * @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;
H A DPKIXReason.java32 * {@code CertPathValidatorException.BasicReason} enumeration.
36 public enum PKIXReason implements CertPathValidatorException.Reason {
H A DPKIXCertPathChecker.java110 * @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 {
H A DCertPathValidatorSpi.java76 * @exception CertPathValidatorException if the {@code CertPath}
84 throws CertPathValidatorException, InvalidAlgorithmParameterException;
H A DCertPathValidatorException.java37 * A {@code CertPathValidatorException} provides support for wrapping
41 * A {@code CertPathValidatorException} may also include the
62 public class CertPathValidatorException extends GeneralSecurityException { class in inherits:GeneralSecurityException
84 * Creates a {@code CertPathValidatorException} with
87 public CertPathValidatorException() { method in class:CertPathValidatorException
92 * Creates a {@code CertPathValidatorException} with the given
98 public CertPathValidatorException(String msg) { method in class:CertPathValidatorException
103 * Creates a {@code CertPathValidatorException} that wraps the
105 * {@code CertPathValidatorException}, while retaining information
115 public CertPathValidatorException(Throwabl method in class:CertPathValidatorException
128 public CertPathValidatorException(String msg, Throwable cause) { method in class:CertPathValidatorException
149 public CertPathValidatorException(String msg, Throwable cause, method in class:CertPathValidatorException
175 public CertPathValidatorException(String msg, Throwable cause, method in class:CertPathValidatorException
[all...]
/openjdk9/jdk/test/java/security/cert/CertPathValidatorException/
H A DReasonTest.java27 * @summary unit test for CertPathValidatorException.Reason
30 import java.security.cert.CertPathValidatorException;
31 import java.security.cert.CertPathValidatorException.BasicReason;
38 CertPathValidatorException cpve = new CertPathValidatorException("abc");
45 cpve = new CertPathValidatorException
54 cpve = new CertPathValidatorException("abc", null, null, -1, null);
H A DGetMessage.java30 import java.security.cert.CertPathValidatorException;
42 CertPathValidatorException cpve =
43 new CertPathValidatorException(cause);
45 // from CertPathValidatorException(Throwable cause) spec:
H A DSerial.java27 * @summary Test deserialization of CertPathValidatorException
40 import java.security.cert.CertPathValidatorException;
41 import java.security.cert.CertPathValidatorException.BasicReason;
45 * This class tests to see if CertPathValidatorException can be serialized and
59 CertPathValidatorException cpve1 =
60 new CertPathValidatorException
70 CertPathValidatorException cpve2 =
71 (CertPathValidatorException) ois.readObject();
73 "CertPathValidatorException messages not equal");
75 "CertPathValidatorException cause
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DState.java31 import java.security.cert.CertPathValidatorException;
51 throws CertificateException, IOException, CertPathValidatorException;
H A DUntrustedChecker.java30 import java.security.cert.CertPathValidatorException;
56 public void init(boolean forward) throws CertPathValidatorException {
74 throws CertPathValidatorException {
84 throw new CertPathValidatorException(
H A DConstraintsChecker.java31 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(c
[all...]
H A DBasicChecker.java39 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
168 throw new CertPathValidatorException
[all...]
H A DKeyChecker.java71 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
H A DRevocationChecker.java38 import java.security.cert.CertPathValidatorException.BasicReason;
65 private LinkedList<CertPathValidatorException> softFailExceptions =
92 throws CertPathValidatorException
99 throws CertPathValidatorException
118 throw new CertPathValidatorException(
166 throws CertPathValidatorException
174 throw new CertPathValidatorException(
209 throws CertPathValidatorException
217 throw new CertPathValidatorException(
227 throws CertPathValidatorException
[all...]
H A DAlgorithmChecker.java49 import java.security.cert.CertPathValidatorException;
50 import java.security.cert.CertPathValidatorException.BasicReason;
218 public void init(boolean forward) throws CertPathValidatorException {
228 CertPathValidatorException("forward checking not supported");
247 throws CertPathValidatorException {
257 throw new CertPathValidatorException(
268 throw new CertPathValidatorException(ce);
278 throw new CertPathValidatorException(
314 throw new CertPathValidatorException(
335 throw new CertPathValidatorException(
[all...]
H A DPKIXMasterCertPathValidator.java35 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 " +
H A DPKIXCertPathValidator.java69 * @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
205 throw new CertPathValidatorException(
H A DPolicyChecker.java32 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 Exceptio
[all...]
H A DOCSP.java34 import java.security.cert.CertPathValidatorException;
35 import java.security.cert.CertPathValidatorException.BasicReason;
111 * @throws CertPathValidatorException if an exception occurs while
121 throws IOException, CertPathValidatorException
132 throws IOException, CertPathValidatorException
142 throws IOException, CertPathValidatorException
149 throw new CertPathValidatorException
173 * @throws CertPathValidatorException if an exception occurs while
180 throws IOException, CertPathValidatorException
198 throw new CertPathValidatorException(
[all...]
H A DOCSPResponse.java32 import java.security.cert.CertPathValidatorException;
33 import java.security.cert.CertPathValidatorException.BasicReason;
379 throws CertPathValidatorException
386 throw new CertPathValidatorException(
391 throw new CertPathValidatorException("OCSP response error: " +
403 throw new CertPathValidatorException(
425 throw new CertPathValidatorException(
497 throw new CertPathValidatorException(
503 throw new CertPathValidatorException(
524 throw new CertPathValidatorException(
[all...]
H A DForwardState.java30 import java.security.cert.CertPathValidatorException;
135 throws CertPathValidatorException
162 throws CertificateException, IOException, CertPathValidatorException {
213 throw new CertPathValidatorException(e);
/openjdk9/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorTrustAnchor.java32 * new CertPathValidatorException.BasicReason enum constant for
43 import java.security.cert.CertPathValidatorException.*;
146 } catch (CertPathValidatorException cpve) {
154 } catch (CertPathValidatorException cpve) {
167 throws CertPathValidatorException, Exception {
H A DCPValidatorIntermediate.java32 * new CertPathValidatorException.BasicReason enum constant for
43 import java.security.cert.CertPathValidatorException.*;
227 } catch (CertPathValidatorException cpve) {
235 } catch (CertPathValidatorException cpve) {
249 } catch (CertPathValidatorException cpve) {
262 throws CertPathValidatorException, Exception {
H A DCPValidatorEndEntity.java32 * New CertPathValidatorException.BasicReason enum constant for
43 import java.security.cert.CertPathValidatorException.*;
332 } catch (CertPathValidatorException cpve) {
341 } catch (CertPathValidatorException cpve) {
356 } catch (CertPathValidatorException cpve) {
369 throws CertPathValidatorException, Exception {
/openjdk9/jdk/src/java.base/share/classes/sun/security/util/
H A DDisabledAlgorithmConstraints.java35 import java.security.cert.CertPathValidatorException;
36 import java.security.cert.CertPathValidatorException.BasicReason;
137 throws CertPathValidatorException {
143 throws CertPathValidatorException {
157 throws CertPathValidatorException {
356 throws CertPathValidatorException {
456 * @throws CertPathValidatorException if constraint disallows.
460 throws CertPathValidatorException;
471 * {@code CertPathValidatorException}.
479 throws CertPathValidatorException {
[all...]

Completed in 114 milliseconds

123