We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea90fa commit d5e2c2cCopy full SHA for d5e2c2c
src/main/java/software/amazon/encryption/s3/internal/CipherSubscriber.java
@@ -50,6 +50,7 @@ public void onNext(ByteBuffer byteBuffer) {
50
51
if (amountToReadFromByteBuffer > 0) {
52
byte[] buf = BinaryUtils.copyBytesFrom(byteBuffer, amountToReadFromByteBuffer);
53
+ System.out.println("updating cipher...");
54
outputBuffer = cipher.update(buf, 0, amountToReadFromByteBuffer);
55
if (outputBuffer == null || outputBuffer.length == 0) {
56
// The underlying data is too short to fill in the block cipher.
0 commit comments