Home
last modified time | relevance | path

Searched refs:certStores (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/security/cert/
DPKIXParameters.java98 private List<CertStore> certStores; field in PKIXParameters
124 this.certStores = new ArrayList<CertStore>(); in PKIXParameters()
160 this.certStores = new ArrayList<CertStore>(); in PKIXParameters()
283 this.certStores = new ArrayList<CertStore>(); in setCertStores()
291 this.certStores = new ArrayList<CertStore>(stores); in setCertStores()
304 this.certStores.add(store); in addCertStore()
319 (new ArrayList<CertStore>(this.certStores)); in getCertStores()
669 if (certStores != null) { in clone()
670 copy.certStores = new ArrayList<CertStore>(certStores); in clone()
731 if (certStores != null) in toString()
[all …]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DDistributionPointFetcher.java72 List<CertStore> certStores, in getCRLs() argument
78 return getCRLs(selector, signFlag, prevKey, null, provider, certStores, in getCRLs()
91 List<CertStore> certStores, in getCRLs() argument
123 certStores, trustAnchors, validity); in getCRLs()
147 String provider, List<CertStore> certStores, in getCRLs() argument
186 certStores)); in getCRLs()
211 trustAnchors, certStores, validity)) { in getCRLs()
263 List<CertStore> certStores) in getCRLs() argument
274 for (CertStore store : certStores) { in getCRLs()
319 Set<TrustAnchor> trustAnchors, List<CertStore> certStores, in verifyCRL() argument
[all …]
DForwardBuilder.java110 List<CertStore> certStores) in getMatchingCerts() argument
132 getMatchingEECerts(currState, certStores, certs); in getMatchingCerts()
134 getMatchingCACerts(currState, certStores, certs); in getMatchingCerts()
144 List<CertStore> certStores, in getMatchingEECerts() argument
180 addMatchingCerts(eeSelector, certStores, eeCerts, searchAllCertStores); in getMatchingEECerts()
188 List<CertStore> certStores, in getMatchingCACerts() argument
326 if (addMatchingCerts(sel, certStores, in getMatchingCACerts()
DPKIX.java143 List<CertStore> certStores() { in certStores() method in PKIX.ValidatorParams
216 certStores(), (X509CertSelector)targetCertConstraints()); in checkParams()
218 @Override List<CertStore> certStores() { in certStores() method in PKIX.BuilderParams
DBuilder.java88 (State currentState, List<CertStore> certStores) in getMatchingCerts() argument
428 Collection<CertStore> certStores, in addMatchingCerts() argument
450 for (CertStore store : certStores) { in addMatchingCerts()
DRevocationChecker.java62 private List<CertStore> certStores; field in RevocationChecker
108 params.certStores()) in init()
151 this.certStores = new ArrayList<>(params.certStores()); in init()
153 this.certStores.add(CertStore.getInstance("Collection", in init()
502 for (CertStore store : certStores) {
554 params.sigProvider(), certStores,
836 certStores, params.date()))
959 builderParams.setCertStores(certStores);
DSunCertPathBuilder.java264 builder.getMatchingCerts(currentState, buildParams.certStores()); in depthFirstSearchForward()