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

/frameworks/base/core/java/android/net/http/
H A DCertificateChainValidator.java106 * @param certChain The bytes for certificates in ASN.1 DER encoded certificates format.
112 byte[][] certChain, String domain, String authType)
115 if (certChain == null || certChain.length == 0) {
119 X509Certificate[] serverCertificates = new X509Certificate[certChain.length];
121 for (int i = 0; i < certChain.length; ++i) {
122 serverCertificates[i] = new X509CertImpl(certChain[i]);
111 verifyServerCertificates( byte[][] certChain, String domain, String authType) argument

Completed in 18 milliseconds