Skip to content

Commit d5e2c2c

Browse files
committed
log
1 parent dea90fa commit d5e2c2c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/software/amazon/encryption/s3/internal/CipherSubscriber.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public void onNext(ByteBuffer byteBuffer) {
5050

5151
if (amountToReadFromByteBuffer > 0) {
5252
byte[] buf = BinaryUtils.copyBytesFrom(byteBuffer, amountToReadFromByteBuffer);
53+
System.out.println("updating cipher...");
5354
outputBuffer = cipher.update(buf, 0, amountToReadFromByteBuffer);
5455
if (outputBuffer == null || outputBuffer.length == 0) {
5556
// The underlying data is too short to fill in the block cipher.

0 commit comments

Comments
 (0)