Decodes a byte array from Base64 format. No blanks or line breaks are allowed within the Base64 encoded input data. @param s A Base64 String to be decoded. @return An array containing the decoded data bytes. @throws IllegalArgumentException If the input is not valid Base64 encoded data.
(String s)
| 231 | * @return An array containing the decoded data bytes. |
| 232 | * @throws IllegalArgumentException If the input is not valid Base64 encoded data. */ |
| 233 | public static byte[] decode (String s) { |
| 234 | return decode(s.toCharArray()); |
| 235 | } |
| 236 | |
| 237 | /** Decodes a byte array from Base64 format. No blanks or line breaks are allowed within the Base64 encoded input data. |
| 238 | * @param s A Base64 String to be decoded. |
no test coverage detected