hex string to int value.
def hexStringToInt(hex_str): return int(hex_str.encode("hex"), 16)
You must be logged in to post a comment.