Searched defs:otherCerts (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/validator/
H A DPKIXValidator.java203 Collection<X509Certificate> otherCerts,
230 return doBuild(chain, otherCerts, pkixParameters);
292 return doBuild(chain, otherCerts, pkixParameters);
356 Collection<X509Certificate> otherCerts,
371 if (otherCerts != null) {
372 certs.addAll(otherCerts);
202 engineValidate(X509Certificate[] chain, Collection<X509Certificate> otherCerts, AlgorithmConstraints constraints, Object parameter) argument
355 doBuild(X509Certificate[] chain, Collection<X509Certificate> otherCerts, PKIXBuilderParameters params) argument
H A DSimpleValidator.java120 * Perform simple validation of chain. The arguments otherCerts and
125 Collection<X509Certificate> otherCerts,
124 engineValidate(X509Certificate[] chain, Collection<X509Certificate> otherCerts, AlgorithmConstraints constraints, Object parameter) argument
H A DValidator.java209 * Validate the given certificate chain. If otherCerts is non-null, it is
214 Collection<X509Certificate> otherCerts) throws CertificateException {
215 return validate(chain, otherCerts, null);
219 * Validate the given certificate chain. If otherCerts is non-null, it is
234 Collection<X509Certificate> otherCerts, Object parameter)
236 return validate(chain, otherCerts, null, parameter);
243 * @param otherCerts a Collection of additional X509Certificates that
257 Collection<X509Certificate> otherCerts,
260 chain = engineValidate(chain, otherCerts, constraints, parameter);
271 Collection<X509Certificate> otherCerts,
213 validate(X509Certificate[] chain, Collection<X509Certificate> otherCerts) argument
233 validate(X509Certificate[] chain, Collection<X509Certificate> otherCerts, Object parameter) argument
256 validate(X509Certificate[] chain, Collection<X509Certificate> otherCerts, AlgorithmConstraints constraints, Object parameter) argument
270 engineValidate(X509Certificate[] chain, Collection<X509Certificate> otherCerts, AlgorithmConstraints constraints, Object parameter) argument
[all...]

Completed in 451 milliseconds