(byte[] buff)
| 79 | } |
| 80 | |
| 81 | public static String BinaryToBase64(byte[] buff) { |
| 82 | return Base64.getEncoder().encodeToString(buff); |
| 83 | } |
| 84 | |
| 85 | public static byte[] Base64ToBinary(Object s) { |
| 86 | return Base64.getDecoder().decode(toString(s)); |
no test coverage detected