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.java69 Bundle encryptedBundle = new Bundle(); in encryptBundle() local
70 encryptedBundle.putByteArray(KEY_CIPHER, encryptedBytes); in encryptBundle()
71 encryptedBundle.putByteArray(KEY_MAC, mac); in encryptBundle()
72 encryptedBundle.putByteArray(KEY_IV, iv); in encryptBundle()
74 return encryptedBundle; in encryptBundle()
DAccountManagerService.java3478 Bundle encryptedBundle = cryptoHelper.encryptBundle(sessionBundle); in onResult() local
3479 result.putBundle(AccountManager.KEY_ACCOUNT_SESSION_BUNDLE, encryptedBundle); in onResult()
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountManagerServiceTest.java3115 Bundle encryptedBundle = null; in encryptBundleWithCryptoHelper() local
3118 encryptedBundle = cryptoHelper.encryptBundle(sessionBundle); in encryptBundleWithCryptoHelper()
3122 return encryptedBundle; in encryptBundleWithCryptoHelper()