Merge "Keystore 2.0 SPI: Fix bug in chunked streamer." am: 3af57cab3a am: 4b1f565fc0 am: cbb3d15358
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1552674 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I6dd2fc4918b0264c08135036a56d06f9408031b5
This commit is contained in:
@@ -139,7 +139,9 @@ class KeyStoreCryptoOperationChunkedStreamer implements KeyStoreCryptoOperationS
|
||||
int inputConsumed = ArrayUtils.copy(input, inputOffset, mChunk, mChunkLength,
|
||||
inputLength);
|
||||
inputLength -= inputConsumed;
|
||||
inputOffset += inputOffset;
|
||||
inputOffset += inputConsumed;
|
||||
mChunkLength += inputConsumed;
|
||||
if (mChunkLength < mChunkSizeMax) return output;
|
||||
byte[] o = mKeyStoreStream.update(mChunk);
|
||||
if (o != null) {
|
||||
output = ArrayUtils.concat(output, o);
|
||||
|
||||
Reference in New Issue
Block a user