Skip to content

Commit ab2106d

Browse files
committed
Fix: BASE64 input should not transform to uppercase
1 parent 6b4a63d commit ab2106d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

byte-array/ByteArray.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public static void main (final String... args) {
9292
byte[] input = new byte[0];
9393
switch (config.fmtIn) {
9494
case BASE64:
95-
input = new Base64 ().decode (config.strIn.toUpperCase ());
95+
input = new Base64 ().decode (config.strIn);
9696
break;
9797
case BASE32:
9898
input = new Base32 ().decode (config.strIn.toUpperCase ());

0 commit comments

Comments
 (0)