decode the Hex encoded input data. It is assumed the input data is valid. @return a byte array representing the decoded data.
(byte[] data)
| 97 | * @return a byte array representing the decoded data. |
| 98 | */ |
| 99 | public static byte[] decode(byte[] data) |
| 100 | { |
| 101 | return decode(data, 0, data.length); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * decode the Hex encoded input data. It is assumed the input data is valid. |