(Object o)
| 70 | |
| 71 | // ---------- small utils ---------- |
| 72 | private static String toString(Object o) { return String.valueOf(o); } |
| 73 | private static byte[] toUtf8(Object o) { return toString(o).getBytes(StandardCharsets.UTF_8); } |
| 74 | |
| 75 | public static String binaryToHex(byte[] data) { |
no outgoing calls
no test coverage detected