HomeSort by relevance Sort by last modified time
    Searched refs:certPathLen (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
KeyChecker.java 48 private final int certPathLen;
57 * @param certPathLen allowable cert path length
61 KeyChecker(int certPathLen, CertSelector targetCertSel) {
62 this.certPathLen = certPathLen;
73 remainingCerts = certPathLen;
PKIXCertPathValidator.java 171 int certPathLen = params.certificates().size();
179 certPathCheckers.add(new KeyChecker(certPathLen,
181 certPathCheckers.add(new ConstraintsChecker(certPathLen));
187 certPathLen,
PolicyChecker.java 61 private final int certPathLen;
81 * @param certPathLen length of the certification path to be checked
88 PolicyChecker(Set<String> initialPolicies, int certPathLen,
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);
    [all...]

Completed in 198 milliseconds