Home
last modified time | relevance | path

Searched refs:certificateChain (Results 1 – 2 of 2) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
DKeyChainTest.java399 X509Certificate[] certificateChain = in getCertificateChain() local
401 if (certificateChain == null) { in getCertificateChain()
405 log("Returned " + certificateChain.length + " certificates in chain"); in getCertificateChain()
406 for (int i = 0; i < certificateChain.length; i++) { in getCertificateChain()
407 Log.d(TAG, "certificate[" + i + "]=" + certificateChain[i]); in getCertificateChain()
409 return certificateChain; in getCertificateChain()
/cts/tests/tests/keystore/src/android/keystore/cts/
DKeyPairGeneratorTest.java1355 Certificate[] certificateChain) throws Exception { in assertUsableForTLSPeerAuthentication() argument
1359 X509Certificate[] x509CertificateChain = new X509Certificate[certificateChain.length]; in assertUsableForTLSPeerAuthentication()
1360 for (int i = 0; i < certificateChain.length; i++) { in assertUsableForTLSPeerAuthentication()
1361 x509CertificateChain[i] = (X509Certificate) certificateChain[i]; in assertUsableForTLSPeerAuthentication()
1367 "trusted", certificateChain[certificateChain.length - 1]); in assertUsableForTLSPeerAuthentication()