Searched refs:certificateChain (Results 1 – 2 of 2) sorted by relevance
384 X509Certificate[] certificateChain = in getCertificateChain() local386 if (certificateChain == null) { in getCertificateChain()390 log("Returned " + certificateChain.length + " certificates in chain"); in getCertificateChain()391 for (int i = 0; i < certificateChain.length; i++) { in getCertificateChain()392 Log.d(TAG, "certificate[" + i + "]=" + certificateChain[i]); in getCertificateChain()394 return certificateChain; in getCertificateChain()
1328 Certificate[] certificateChain) throws Exception { in assertUsableForTLSPeerAuthentication() argument1332 X509Certificate[] x509CertificateChain = new X509Certificate[certificateChain.length]; in assertUsableForTLSPeerAuthentication()1333 for (int i = 0; i < certificateChain.length; i++) { in assertUsableForTLSPeerAuthentication()1334 x509CertificateChain[i] = (X509Certificate) certificateChain[i]; in assertUsableForTLSPeerAuthentication()1340 "trusted", certificateChain[certificateChain.length - 1]); in assertUsableForTLSPeerAuthentication()