Hex conversion utils.
hexify.toHexString([0x00, 0xFF, 0x6C, 0x0A]) === '00ff6c0a'
hexify.toByteArray('00ff6c0a') === [0x00, 0xFF, 0x6C, 0x0A]