Home
last modified time | relevance | path

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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DSSLUtils.java339 X509Certificate[] certificateChain; in fromAlias() local
341 certificateChain = KeyChain.getCertificateChain(context, alias); in fromAlias()
361 if (certificateChain == null || privateKey == null) { in fromAlias()
365 return new KeyChainKeyManager(alias, certificateChain, privateKey); in fromAlias()
378 String clientAlias, X509Certificate[] certificateChain, PrivateKey privateKey) { in KeyChainKeyManager() argument
380 mCertificateChain = certificateChain; in KeyChainKeyManager()
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
DKeyChainTestActivity.java249 X509Certificate[] certificateChain in getCertificateChain() local
251 if (certificateChain == null) { in getCertificateChain()
255 for (int i = 0; i < certificateChain.length; i++) { in getCertificateChain()
256 log("certificate[" + i + "]=" + certificateChain[i]); in getCertificateChain()
258 return certificateChain; in getCertificateChain()
/packages/apps/Browser/src/com/android/browser/
DKeyChainLookup.java38 X509Certificate[] certificateChain; in doInBackground() local
41 certificateChain = KeyChain.getCertificateChain(mContext, mAlias); in doInBackground()
49 mHandler.proceed(privateKey, certificateChain); in doInBackground()