Searched defs:certPath (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/security/cert/
H A DCertPathValidatorSpi.java38 * @param certPath
51 public abstract CertPathValidatorResult engineValidate(CertPath certPath, argument
H A DPKIXCertPathBuilderResult.java30 private final CertPath certPath; field in class:PKIXCertPathBuilderResult
37 * @param certPath
49 public PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, argument
52 if (certPath == null) {
53 throw new NullPointerException("certPath == null");
55 this.certPath = certPath;
64 return certPath;
77 sb.append(certPath.toString());
H A DCertPathValidatorException.java37 private CertPath certPath; field in class:CertPathValidatorException
53 * @param certPath
58 * if {@code certPath} is {@code null} and index is not {@code
61 * if {@code certPath} is not {@code null} and index is not
65 CertPath certPath, int index) {
67 // check certPath and index parameters
68 if ((certPath == null) && (index != -1)) {
71 if ((certPath != null) && ((index < -1) || (index >= certPath.getCertificates().size()))) {
74 this.certPath
64 CertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index) argument
[all...]
H A DCertPathValidator.java173 * @param certPath
187 public final CertPathValidatorResult validate(CertPath certPath, argument
190 return spiImpl.engineValidate(certPath, params);
/libcore/luni/src/test/java/tests/targets/security/cert/
H A DCertPathValidatorTestPKIX.java41 private CertPath certPath; field in class:CertPathValidatorTestPKIX
50 return certPath;
86 certPath = builderResult.getCertPath();
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertPathValidatorSpi.java40 public CertPathValidatorResult engineValidate(CertPath certPath, argument
44 if (certPath == null) {
46 throw new CertPathValidatorException("certPath null");

Completed in 130 milliseconds