How do I convert a text string to a HEX string?
Don M
Posts: 1,652
I have this 32 character string:
and I want to convert it into 16 HEX bytes into a byte buffer called Temp[40] so that Temp[0] = $cc, Temp[1] = $9a, Temp[2] = $67 and so on.
How do I do this?
Thanks.
Don
DAT Text byte "cc9a67d9fb998b18922e015a35af0780"
and I want to convert it into 16 HEX bytes into a byte buffer called Temp[40] so that Temp[0] = $cc, Temp[1] = $9a, Temp[2] = $67 and so on.
How do I do this?
Thanks.
Don
Comments