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

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPathValidatorSpi.java73 * @param certPath the <code>CertPath</code> 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.java266 * @param certPath the <code>CertPath</code> to be validated
275 public final CertPathValidatorResult validate(CertPath certPath, argument
279 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())</code>
146 * @throws IllegalArgumentException if <code>certPath</code> 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...]
/openjdk7/jdk/src/share/classes/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 DOCSPChecker.java90 * @param certPath the X509 certification path
94 OCSPChecker(CertPath certPath, PKIXParameters pkixParams) argument
96 this(certPath, pkixParams, false);
99 OCSPChecker(CertPath certPath, PKIXParameters pkixParams, boolean onlyEECert) argument
102 this.cp = certPath;

Completed in 35 milliseconds