(Object buff2)
| 219 | } |
| 220 | |
| 221 | public static String binaryToBase16(Object buff2) { |
| 222 | byte[] buff = (byte[]) buff2; |
| 223 | return binaryToHex(buff); |
| 224 | } |
| 225 | |
| 226 | public static String binaryToBase58(Object buff2) { |
| 227 | byte[] buff = (byte[]) buff2; |
no test coverage detected