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

1 2

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathValidatorExceptionTest.java 26 import java.security.cert.CertPathValidatorException;
32 * Test for CertPathValidatorException serialization
44 CertPathValidatorException dExc = new CertPathValidatorException(
48 return new Object[] { new CertPathValidatorException(),
49 new CertPathValidatorException(msg),
50 new CertPathValidatorException(msgs[1]),
51 new CertPathValidatorException(new Throwable()),
52 new CertPathValidatorException(th),
53 new CertPathValidatorException(msgs[1], dExc)
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathValidatorException.java 26 * A {@code CertPathValidatorException} may optionally include the certification
30 public class CertPathValidatorException extends GeneralSecurityException {
45 * Creates a new {@code CertPathValidatorException} with the specified
64 public CertPathValidatorException(String msg, Throwable cause,
79 * Creates a new {@code CertPathValidatorException} with the specified
87 public CertPathValidatorException(String msg, Throwable cause) {
92 * Creates a new {@code CertPathValidatorException} with the specified
98 public CertPathValidatorException(Throwable cause) {
103 * Creates a new {@code CertPathValidatorException} with the specified
109 public CertPathValidatorException(String msg)
    [all...]
CertPathValidatorSpi.java 43 * @throws CertPathValidatorException
52 CertPathParameters params) throws CertPathValidatorException,
PKIXCertPathChecker.java 71 * @throws CertPathValidatorException
77 throws CertPathValidatorException;
106 * @throws CertPathValidatorException
110 throws CertPathValidatorException;
CertPathValidator.java 179 * @throws CertPathValidatorException
189 CertPathParameters params) throws CertPathValidatorException,
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertPathValidatorSpi.java 27 import java.security.cert.CertPathValidatorException;
40 CertPathParameters params) throws CertPathValidatorException,
45 throw new CertPathValidatorException("certPath null");
TestUtils.java 32 import java.security.cert.CertPathValidatorException;
198 throws CertPathValidatorException {
205 public void init(boolean arg0) throws CertPathValidatorException {
  /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 28 import java.security.cert.CertPathValidatorException;
37 * Tests for <code>CertPathValidatorException</code> class constructors and
51 * Test for <code>CertPathValidatorException()</code> constructor
52 * Assertion: constructs CertPathValidatorException with no detail message
55 CertPathValidatorException tE = new CertPathValidatorException();
61 * Test for <code>CertPathValidatorException(String)</code> constructor
62 * Assertion: constructs CertPathValidatorException with detail message msg.
66 CertPathValidatorException tE;
68 tE = new CertPathValidatorException(msgs[i])
    [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 {
CertPathValidatorSpiTest.java 30 import java.security.cert.CertPathValidatorException;
45 public void testCertPathValidatorSpi01() throws CertPathValidatorException,
55 fail("CertPathValidatorException must be thrown");
56 } catch (CertPathValidatorException e) {
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) {
CertPathValidator3Test.java 39 import java.security.cert.CertPathValidatorException;
89 public void testValidate01() throws InvalidAlgorithmParameterException, CertPathValidatorException {
CertPathValidator1Test.java 34 import java.security.cert.CertPathValidatorException;
327 throws NoSuchAlgorithmException, NoSuchProviderException, CertPathValidatorException {
357 CertPathValidatorException, InvalidAlgorithmParameterException {
370 fail("CertPathValidatorException must be thrown");
371 } 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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathValidatorExceptionTest.java 24 import java.security.cert.CertPathValidatorException;
35 * Tests for <code>CertPathValidatorException</code> class constructors and
60 * Test for <code>CertPathValidatorException()</code> constructor
61 * Assertion: constructs CertPathValidatorException with no detail message
64 CertPathValidatorException tE = new CertPathValidatorException();
70 * Test for <code>CertPathValidatorException(String)</code> constructor
71 * Assertion: constructs CertPathValidatorException with detail message msg.
75 CertPathValidatorException tE;
77 tE = new CertPathValidatorException(msgs[i])
    [all...]
CertPathValidatorSpiTest.java 27 import java.security.cert.CertPathValidatorException;
54 public void testCertPathValidatorSpi01() throws CertPathValidatorException,
64 fail("CertPathValidatorException must be thrown");
65 } catch (CertPathValidatorException e) {
PKIXCertPathCheckerTest.java 24 import java.security.cert.CertPathValidatorException;
69 throws CertPathValidatorException {
80 throws CertPathValidatorException {
CertPathValidator2Test.java 30 import java.security.cert.CertPathValidatorException;
88 throws CertPathValidatorException,
103 } catch (CertPathValidatorException e) {
119 InvalidAlgorithmParameterException, CertPathValidatorException {
154 InvalidAlgorithmParameterException, CertPathValidatorException {
219 InvalidAlgorithmParameterException, CertPathValidatorException {
CertPathValidator3Test.java 31 import java.security.cert.CertPathValidatorException;
102 CertPathValidatorException, InvalidAlgorithmParameterException {
CertPathValidator1Test.java 31 import java.security.cert.CertPathValidatorException;
339 throws NoSuchAlgorithmException, NoSuchProviderException, CertPathValidatorException {
369 CertPathValidatorException, InvalidAlgorithmParameterException {
382 fail("CertPathValidatorException must be thrown");
383 } catch (CertPathValidatorException e) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathValidatorException.java 4 import java.security.cert.CertPathValidatorException;
7 extends CertPathValidatorException
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathValidatorSpi.java 10 import java.security.cert.CertPathValidatorException;
48 throws CertPathValidatorException,
84 throw new CertPathValidatorException("Certification path is empty.", null, certPath, 0);
97 throw new CertPathValidatorException(e.getMessage(), e, certPath, 0);
124 throw new CertPathValidatorException(e.getMessage(), e, certPath, certs.size() - 1);
129 throw new CertPathValidatorException("Trust anchor for certification path not found.", null, certPath, -1);
240 catch (CertPathValidatorException e)
284 throw new CertPathValidatorException(e.getMessage(), e, certPath, index);
327 throw new CertPathValidatorException("Version 1 certificates can't be used as CA ones.", null,
400 catch (CertPathValidatorException e
    [all...]
RFC3280CertPathUtilities.java 10 import java.security.cert.CertPathValidatorException;
526 catch (CertPathValidatorException e)
864 throws CertPathValidatorException
    [all...]
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustManagerImpl.java 26 import java.security.cert.CertPathValidatorException;
307 throw new CertificateException(new CertPathValidatorException(
318 throw new CertificateException(new CertPathValidatorException(
343 } catch (CertPathValidatorException e) {
457 public void init(boolean forward) throws CertPathValidatorException {
472 throws CertPathValidatorException {
482 throw new CertPathValidatorException(e);
524 throw new CertPathValidatorException("End-entity certificate does not have a valid "

Completed in 1099 milliseconds

1 2