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.java384 X509Certificate[] certificateChain = in getCertificateChain() local
386 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()
/cts/tests/tests/keystore/src/android/keystore/cts/
DKeyPairGeneratorTest.java1328 Certificate[] certificateChain) throws Exception { in assertUsableForTLSPeerAuthentication() argument
1332 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()