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.java210 int minExpectedOutputSize = inputInclBuffered - (inputInclBuffered % blockSize); in testGetOutputSizeInEncryptionMode() local
214 minExpectedOutputSize += blockSize; in testGetOutputSizeInEncryptionMode()
220 if (actualOutputSize < minExpectedOutputSize) { in testGetOutputSizeInEncryptionMode()
223 + minExpectedOutputSize + ">, actual: <" + actualOutputSize + ">"); in testGetOutputSizeInEncryptionMode()
264 int minExpectedOutputSize; in testGetOutputSizeInDecryptionMode() local
270 minExpectedOutputSize = in testGetOutputSizeInDecryptionMode()
276 minExpectedOutputSize = inputInclBuffered - (inputInclBuffered % blockSize); in testGetOutputSizeInDecryptionMode()
281 minExpectedOutputSize--; in testGetOutputSizeInDecryptionMode()
285 minExpectedOutputSize -= blockSize; in testGetOutputSizeInDecryptionMode()
293 if (minExpectedOutputSize < 0) { in testGetOutputSizeInDecryptionMode()
[all …]