Searched defs:certPathLen (Results 1 - 2 of 2) 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 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 34 milliseconds