Skip to content

Commit 5934819

Browse files
committed
log2
1 parent d5e2c2c commit 5934819

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ private MultipartUploadMaterials(Builder builder) {
4343
this._cryptoProvider = builder._cryptoProvider;
4444
this._plaintextLength = builder._plaintextLength;
4545
this._cipher = builder._cipher;
46+
System.out.println("initializing upload materials");
4647
}
4748

4849
static public Builder builder() {
@@ -73,6 +74,7 @@ public final void setHasFinalPartBeenSeen(boolean hasFinalPartBeenSeen) {
7374
*/
7475
@Override
7576
public Cipher getCipher(byte[] iv) {
77+
System.out.println("returning cipher");
7678
if (!Arrays.equals(iv, _cipher.getIV())) {
7779
throw new S3EncryptionClientException("IVs in MultipartUploadMaterials do not match!");
7880
}

0 commit comments

Comments
 (0)