(Object str2)
| 25 | // ---------------------------- |
| 26 | |
| 27 | public static Object base16ToBinary(Object str2) { |
| 28 | String s = (String) str2; |
| 29 | return convertHexStringToByteArray(s); |
| 30 | } |
| 31 | |
| 32 | public static byte[] convertHexStringToByteArray(String hexString) { |
| 33 | if (hexString.length() % 2 != 0) { |
no test coverage detected