Skip to content

Commit 5e988db

Browse files
review comments are fixed
1 parent 6352c16 commit 5e988db

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/mastercard/developer/encryption/aes

1 file changed

+1
-1
lines changed

src/main/java/com/mastercard/developer/encryption/aes/AESCBC.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static byte[] decrypt(Key secretKey, JweObject object, boolean enableHmac
2929
byte[] cek = secretKey.getEncoded();
3030

3131
if(cek.length != 32) {
32-
throw new IllegalArgumentException("CEK should be of length 32")
32+
throw new IllegalArgumentException("CEK should be of length 32");
3333
}
3434
// For A128CBC-HS256: First 16 bytes are HMAC key, second 16 bytes are AES key
3535
int keyLength = cek.length / 2;

0 commit comments

Comments
 (0)