Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/accounts/
H A 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()
H A DAccountManagerService.java3652 Bundle encryptedBundle = cryptoHelper.encryptBundle(sessionBundle); in onResult() local
3653 result.putBundle(AccountManager.KEY_ACCOUNT_SESSION_BUNDLE, encryptedBundle); in onResult()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountManagerServiceTest.java3386 Bundle encryptedBundle = null; in encryptBundleWithCryptoHelper() local
3389 encryptedBundle = cryptoHelper.encryptBundle(sessionBundle); in encryptBundleWithCryptoHelper()
3393 return encryptedBundle; in encryptBundleWithCryptoHelper()