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

/libcore/ojluni/src/main/java/java/security/cert/
H A DCertPathValidatorSpi.java73 * @param certPath the {@code CertPath} to be validated
83 engineValidate(CertPath certPath, CertPathParameters params) argument
H A DPKIXCertPathBuilderResult.java62 private CertPath certPath; field in class:PKIXCertPathBuilderResult
68 * @param certPath the validated <code>CertPath</code>
74 * @throws NullPointerException if the <code>certPath</code>,
78 public PKIXCertPathBuilderResult(CertPath certPath, argument
83 if (certPath == null)
84 throw new NullPointerException("certPath must be non-null");
85 this.certPath = certPath;
99 return certPath;
112 sb.append(" Certification Path: " + certPath
[all...]
H A DCertPathValidator.java288 * @param certPath the {@code CertPath} to be validated
297 public final CertPathValidatorResult validate(CertPath certPath, argument
301 return validatorSpi.engineValidate(certPath, params);
H A DCertPathValidatorException.java76 private CertPath certPath; field in class:CertPathValidatorException
138 * @param certPath the certification path that was in the process of
144 * {@code (index < -1 || (certPath != null && index >=
145 * certPath.getCertificates().size()) }
146 * @throws IllegalArgumentException if {@code certPath} is
150 CertPath certPath, int index) {
151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED);
160 * @param certPath the certification path that was in the process of
167 * {@code (index < -1 || (certPath != null && index >=
168 * certPath
149 CertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index) argument
175 CertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index, Reason reason) argument
[all...]
/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/ojluni/src/main/java/sun/security/provider/certpath/
H A DSunCertPathBuilderResult.java59 * @param certPath the validated <code>CertPath</code>
67 SunCertPathBuilderResult(CertPath certPath, argument
71 super(certPath, trustAnchor, policyTree, subjectPublicKey);
H A DPKIX.java79 private CertPath certPath; field in class:PKIX.ValidatorParams
98 this.certPath = cp;
116 CertPath certPath() { method in class:PKIX.ValidatorParams
117 return certPath;
121 this.certPath = cp;
125 if (certPath == null) {
132 ((List<X509Certificate>)certPath.getCertificates());
/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 349 milliseconds