Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/
H A DAesEncryptionUtil.java53 int rawCipherTextSize = cipherStream.readInt(); in decrypt() local
54 if (rawCipherTextSize < 0) { in decrypt()
55 throw new IOException("Invalid cipher text size: " + rawCipherTextSize); in decrypt()
58 byte[] rawCipherText = new byte[rawCipherTextSize]; in decrypt()