Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/accounts/
DCryptoHelper.java70 Bundle encryptedBundle = new Bundle(); in encryptBundle() local
71 encryptedBundle.putByteArray(KEY_CIPHER, encryptedBytes); in encryptBundle()
72 encryptedBundle.putByteArray(KEY_MAC, mac); in encryptBundle()
73 encryptedBundle.putByteArray(KEY_IV, iv); in encryptBundle()
75 return encryptedBundle; in encryptBundle()
DAccountManagerService.java3712 Bundle encryptedBundle = cryptoHelper.encryptBundle(sessionBundle); in onResult() local
3713 result.putBundle(AccountManager.KEY_ACCOUNT_SESSION_BUNDLE, encryptedBundle); in onResult()
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountManagerServiceTest.java3497 Bundle encryptedBundle = null; in encryptBundleWithCryptoHelper() local
3500 encryptedBundle = cryptoHelper.encryptBundle(sessionBundle); in encryptBundleWithCryptoHelper()
3504 return encryptedBundle; in encryptBundleWithCryptoHelper()