Searched defs:certPathLen (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DKeyChecker.java48 private final int certPathLen; field in class:KeyChecker
57 * @param certPathLen allowable cert path length
61 KeyChecker(int certPathLen, CertSelector targetCertSel) { argument
62 this.certPathLen = certPathLen;
73 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);
223 boolean finalCert = (certIndex == certPathLen);

Completed in 203 milliseconds