We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5e2c2c commit 5934819Copy full SHA for 5934819
src/main/java/software/amazon/encryption/s3/internal/MultipartUploadMaterials.java
@@ -43,6 +43,7 @@ private MultipartUploadMaterials(Builder builder) {
43
this._cryptoProvider = builder._cryptoProvider;
44
this._plaintextLength = builder._plaintextLength;
45
this._cipher = builder._cipher;
46
+ System.out.println("initializing upload materials");
47
}
48
49
static public Builder builder() {
@@ -73,6 +74,7 @@ public final void setHasFinalPartBeenSeen(boolean hasFinalPartBeenSeen) {
73
74
*/
75
@Override
76
public Cipher getCipher(byte[] iv) {
77
+ System.out.println("returning cipher");
78
if (!Arrays.equals(iv, _cipher.getIV())) {
79
throw new S3EncryptionClientException("IVs in MultipartUploadMaterials do not match!");
80
0 commit comments