Interface ByteUtil
access this type via: data.ByteUtil (provides, requires or uses)
Utility functions to manipulate byte arrays.
Functions
byte[] reverse(byte bytes[])
byte[] fromHexString(char hexString[])
char[] toHexString(byte bytes[])
byte[] reverse(byte bytes[])
bytes An array of bytes to reverse.
byte[] fromHexString(char hexString[])
hexString An array of ascii hex characters to transpose back into a byte array.
char[] toHexString(byte bytes[])
bytes An array of bytes to transform into a hexidecimal string.