Searched refs:certPathLen (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DKeyChecker.java50 private final int certPathLen; field in class:KeyChecker
59 * @param certPathLen allowable cert path length
63 KeyChecker(int certPathLen, CertSelector targetCertSel) argument
66 this.certPathLen = certPathLen;
77 remainingCerts = certPathLen;
H A DPKIXCertPathValidator.java301 int certPathLen = certList.size();
305 KeyChecker keyChecker = new KeyChecker(certPathLen,
308 new ConstraintsChecker(certPathLen);
311 new PolicyChecker(pkixParam.getInitialPolicies(), certPathLen,
H A DPolicyChecker.java61 private final int certPathLen; field in class:PolicyChecker
81 * @param certPathLen length of the certification path to be checked
88 PolicyChecker(Set<String> initialPolicies, int certPathLen, argument
101 this.certPathLen = certPathLen;
126 explicitPolicy = (expPolicyRequired ? 0 : certPathLen + 1);
127 policyMapping = (polMappingInhibited ? 0 : certPathLen + 1);
128 inhibitAnyPolicy = (anyPolicyInhibited ? 0 : certPathLen + 1);
221 boolean finalCert = (certIndex == certPathLen);

Completed in 57 milliseconds