Home
last modified time | relevance | path

Searched refs:CIPHER_ALGORITHM (Results 1 – 11 of 11) sorted by relevance

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DWifiConfigStoreEncryptionUtil.java52 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in WifiConfigStoreEncryptionUtil
87 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in encrypt()
97 reportException(e, "encrypt could not find the algorithm: " + CIPHER_ALGORITHM); in encrypt()
121 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in decrypt()
129 reportException(e, "decrypt could not find cipher algorithm " + CIPHER_ALGORITHM); in decrypt()
/aosp12/frameworks/base/services/core/java/com/android/server/accounts/
H A DCryptoHelper.java32 private static final String CIPHER_ALGORITHM = "AES/CBC/PKCS5Padding"; field in CryptoHelper
64 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in encryptBundle()
90 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in decryptBundle()
/aosp12/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/chunking/
H A DChunkEncryptor.java35 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in ChunkEncryptor
65 cipher = Cipher.getInstance(CIPHER_ALGORITHM); in encrypt()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
H A DWrappedKeyTest.java50 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in WrappedKeyTest
76 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in fromSecretKey_createsWrappedKeyThatCanBeUnwrapped_nullMetadata()
95 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in fromSecretKey_createsWrappedKeyThatCanBeUnwrapped_nonNullMetadata()
/aosp12/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/chunking/
H A DChunkEncryptorTest.java52 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in ChunkEncryptorTest
149 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in encrypt_decryptedResultCorrespondsToPlaintext()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
H A DBluetoothKeystoreService.java74 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in BluetoothKeystoreService
718 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in encrypt()
737 reportKeystoreException(e, "encrypt could not find the algorithm: " + CIPHER_ALGORITHM); in encrypt()
769 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in decrypt()
785 "decrypt could not find cipher algorithm " + CIPHER_ALGORITHM); in decrypt()
/aosp12/frameworks/base/packages/BackupEncryption/src/com/android/server/backup/encryption/tasks/
H A DEncryptedBackupTask.java61 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in EncryptedBackupTask
212 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in encryptChunkOrdering()
H A DBackupFileDecryptorTask.java72 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in BackupFileDecryptorTask
89 this.mCipher = Cipher.getInstance(CIPHER_ALGORITHM); in BackupFileDecryptorTask()
/aosp12/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/backup/encryption/tasks/
H A DKvBackupEncrypterTest.java63 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in KvBackupEncrypterTest
279 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in decryptChunk()
H A DEncryptedBackupTaskTest.java80 private static final String CIPHER_ALGORITHM = "AES/GCM/NoPadding"; field in EncryptedBackupTaskTest
355 Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); in decryptChunkOrdering()
/aosp12/packages/apps/RemoteProvisioner/tests/unittests/
H A Dtink-android-1.5.0.jarcom/google/crypto/tink/subtle/prf/StreamingPrf.class StreamingPrf.java package ...