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 usi
(String str, int flags)
| 86 | * @throws IllegalArgumentException if the input contains incorrect padding |
| 87 | */ |
| 88 | public static byte[] decode(String str, int flags) { |
| 89 | return decode(str.getBytes(), flags); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Decode the Base64-encoded data in input and return the data in a new byte array. |
no test coverage detected