Home
last modified time | relevance | path

Searched refs:stores (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DPKIX.java80 private List<CertStore> stores; field in PKIX.ValidatorParams
144 if (stores == null) in certStores()
145 stores = params.getCertStores(); in certStores()
146 return stores; in certStores()
196 private List<CertStore> stores; field in PKIX.BuilderParams
219 if (stores == null) { in certStores()
221 stores = new ArrayList<>(params.getCertStores()); in certStores()
222 Collections.sort(stores, new CertStoreComparator()); in certStores()
224 return stores; in certStores()
234 private static X500Principal getTargetSubject(List<CertStore> stores, in getTargetSubject() argument
[all …]
DRevocationChecker.java209 List<CertStore> stores)
213 return getResponderCert(rp.ocspSubject, anchors, stores);
216 anchors, stores);
227 List<CertStore> stores)
237 return getResponderCert(sel, anchors, stores);
243 List<CertStore> stores)
259 return getResponderCert(sel, anchors, stores);
264 List<CertStore> stores)
278 for (CertStore store : stores) {
/libcore/ojluni/src/main/java/java/security/cert/
DPKIXParameters.java281 public void setCertStores(List<CertStore> stores) { in setCertStores() argument
282 if (stores == null) { in setCertStores()
285 for (Iterator<CertStore> i = stores.iterator(); i.hasNext();) { in setCertStores()
291 this.certStores = new ArrayList<CertStore>(stores); in setCertStores()