OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
165
int
certPathLen
= params.certificates().size();
172
certPathCheckers.add(new KeyChecker(
certPathLen
,
174
certPathCheckers.add(new ConstraintsChecker(
certPathLen
));
180
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 169 milliseconds