Decode the Base64-encoded data in input and return the data in a new byte array. The padding '=' characters at the end are considered optional, but if any are present, there must be the correct number of them. @param str the input String to decode, which is converted to bytes
(String str, int flags)
| 106 | * incorrect padding |
| 107 | */ |
| 108 | public static byte[] decode(String str, int flags) { |
| 109 | return decode(str.getBytes(), flags); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Decode the Base64-encoded data in input and return the data in |
no test coverage detected