Helper to convert an array of bytes to a hexadecimal encoded string. @param bytes The byte array to convert @return A hex string
(final byte[] bytes)
| 882 | * @return A hex string |
| 883 | */ |
| 884 | public static String bytesToString(final byte[] bytes) { |
| 885 | return DatatypeConverter.printHexBinary(bytes); |
| 886 | } |
| 887 | |
| 888 | /** |
| 889 | * Helper to convert a hex encoded string into a byte array. |
no outgoing calls
no test coverage detected