Searched refs:decryptionKey (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/ |
D | PlatformKeyManager.java | 272 PlatformDecryptionKey decryptionKey = getDecryptKeyInternal(userId); in getDecryptKey() local 273 ensureDecryptionKeyIsValid(userId, decryptionKey); in getDecryptKey() 274 return decryptionKey; in getDecryptKey() 314 private void ensureDecryptionKeyIsValid(int userId, PlatformDecryptionKey decryptionKey) in ensureDecryptionKeyIsValid() argument 318 decryptionKey.getKey(), in ensureDecryptionKeyIsValid()
|
D | SecureBox.java | 272 SecretKey decryptionKey = hkdfDeriveKey(keyingMaterial, HKDF_SALT, hkdfInfo); in decrypt() local 273 return aesGcmDecrypt(decryptionKey, randNonce, ciphertext, header); in decrypt()
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | SyntheticPasswordCrypto.java | 129 SecretKey decryptionKey = (SecretKey) keyStore.getKey(keyAlias, null); in decryptBlobV1() local 131 return decrypt(decryptionKey, intermediate); in decryptBlobV1() 143 SecretKey decryptionKey = (SecretKey) keyStore.getKey(keyAlias, null); in decryptBlob() local 144 byte[] intermediate = decrypt(decryptionKey, blob); in decryptBlob()
|
D | LockSettingsService.java | 1176 SecretKey decryptionKey = (SecretKey) keyStore.getKey( in getDecryptedPasswordForTiedProfile() local 1182 cipher.init(Cipher.DECRYPT_MODE, decryptionKey, new GCMParameterSpec(128, iv)); in getDecryptedPasswordForTiedProfile()
|