Encodes a byte array into Base64 format. No blanks or line breaks are inserted in the output. @param in An array containing the data bytes to be encoded. @return A character array containing the Base64 encoded data.
(final byte[] in)
| 186 | * @return A character array containing the Base64 encoded data. |
| 187 | */ |
| 188 | public static char[] encode(final byte[] in) { |
| 189 | return Base64Coder.encode(in, 0, in.length); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Encodes a byte array into Base64 format. No blanks or line breaks are |
no outgoing calls
no test coverage detected