Home
last modified time | relevance | path

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

/cts/tests/tests/keystore/src/android/keystore/cts/
DBlockCipherTestBase.java238 int minExpectedOutputSize = inputInclBuffered - (inputInclBuffered % blockSize); in testGetOutputSizeInEncryptionMode() local
242 minExpectedOutputSize += blockSize; in testGetOutputSizeInEncryptionMode()
248 if (actualOutputSize < minExpectedOutputSize) { in testGetOutputSizeInEncryptionMode()
251 + minExpectedOutputSize + ">, actual: <" + actualOutputSize + ">"); in testGetOutputSizeInEncryptionMode()
293 int minExpectedOutputSize; in testGetOutputSizeInDecryptionMode() local
299 minExpectedOutputSize = in testGetOutputSizeInDecryptionMode()
305 minExpectedOutputSize = inputInclBuffered - (inputInclBuffered % blockSize); in testGetOutputSizeInDecryptionMode()
310 minExpectedOutputSize--; in testGetOutputSizeInDecryptionMode()
314 minExpectedOutputSize -= blockSize; in testGetOutputSizeInDecryptionMode()
322 if (minExpectedOutputSize < 0) { in testGetOutputSizeInDecryptionMode()
[all …]