Searched defs:certStores (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DReverseBuilder.java107 * @param certStores list of CertStores
110 (State currState, List<CertStore> certStores)
127 getMatchingEECerts(currentState, certStores);
128 certs.addAll(getMatchingCACerts(currentState, certStores));
138 (ReverseState currentState, List<CertStore> certStores)
184 addMatchingCerts(sel, certStores, eeCerts, true);
198 (ReverseState currentState, List<CertStore> certStores)
249 addMatchingCerts(sel, certStores, reverseCerts, true);
109 getMatchingCerts(State currState, List<CertStore> certStores) argument
137 getMatchingEECerts(ReverseState currentState, List<CertStore> certStores) argument
197 getMatchingCACerts(ReverseState currentState, List<CertStore> certStores) argument
H A DBuilder.java88 * Retrieves certificates from the list of certStores using the buildParams
92 * @param certStores list of CertStores
95 (State currentState, List<CertStore> certStores)
431 Collection<CertStore> certStores,
446 for (CertStore store : certStores) {
94 getMatchingCerts(State currentState, List<CertStore> certStores) argument
430 addMatchingCerts(X509CertSelector selector, Collection<CertStore> certStores, Collection<X509Certificate> resultCerts, boolean checkAll) argument
H A DDistributionPointFetcher.java84 List<CertStore> certStores,
119 certStores, trustAnchors, validity);
140 List<CertStore> certStores, Set<TrustAnchor> trustAnchors,
177 certStores));
194 certStores, validity)) {
235 * Fetch CRLs from certStores.
238 X500Principal certIssuer, List<CertStore> certStores)
247 for (CertStore store : certStores) {
276 * @param certStores a {@code List} of {@code CertStore}s to be used in
285 Set<TrustAnchor> trustAnchors, List<CertStore> certStores,
80 getCRLs(X509CRLSelector selector, boolean signFlag, PublicKey prevKey, String provider, List<CertStore> certStores, boolean[] reasonsMask, Set<TrustAnchor> trustAnchors, Date validity) argument
137 getCRLs(X509CRLSelector selector, X509CertImpl certImpl, DistributionPoint point, boolean[] reasonsMask, boolean signFlag, PublicKey prevKey, String provider, List<CertStore> certStores, Set<TrustAnchor> trustAnchors, Date validity) argument
237 getCRLs(X500Name name, X500Principal certIssuer, List<CertStore> certStores) argument
282 verifyCRL(X509CertImpl certImpl, DistributionPoint point, X509CRL crl, boolean[] reasonsMask, boolean signFlag, PublicKey prevKey, String provider, Set<TrustAnchor> trustAnchors, List<CertStore> certStores, Date validity) argument
[all...]
H A DForwardBuilder.java123 * @param certStores list of CertStores
126 (State currentState, List<CertStore> certStores)
146 getMatchingEECerts(currState, certStores, certs);
148 getMatchingCACerts(currState, certStores, certs);
158 List<CertStore> certStores, Collection<X509Certificate> eeCerts)
193 addMatchingCerts(eeSelector, certStores, eeCerts, searchAllCertStores);
201 List<CertStore> certStores, Collection<X509Certificate> caCerts)
339 if (addMatchingCerts(sel, certStores,
125 getMatchingCerts(State currentState, List<CertStore> certStores) argument
157 getMatchingEECerts(ForwardState currentState, List<CertStore> certStores, Collection<X509Certificate> eeCerts) argument
200 getMatchingCACerts(ForwardState currentState, List<CertStore> certStores, Collection<X509Certificate> caCerts) argument
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXParameters.java98 private List<CertStore> certStores; field in class:PKIXParameters
124 this.certStores = new ArrayList<CertStore>();
160 this.certStores = new ArrayList<CertStore>();
283 this.certStores = new ArrayList<CertStore>();
291 this.certStores = new ArrayList<CertStore>(stores);
304 this.certStores.add(store);
319 (new ArrayList<CertStore>(this.certStores));
669 if (certStores != null) {
670 copy.certStores = new ArrayList<CertStore>(certStores);
[all...]

Completed in 37 milliseconds