First off, I want to say thank you to everyone on this fourm. You've all been so helpful in the past
My problem:
I want to take a string and convert it to hex. Then I want take each hex value and convert it to a different hex value. Lets say character one = 70, change it to 73.
Example:
String = Hello
Convert String to Hex which is: 48 65 6c 6c 6f
Take each hex value and change it to a different value.
48 -> 52
65 -> 55
etc.
After that, combine the hex values back into 1 string.
Thanks in advance
My problem:
I want to take a string and convert it to hex. Then I want take each hex value and convert it to a different hex value. Lets say character one = 70, change it to 73.
Example:
String = Hello
Convert String to Hex which is: 48 65 6c 6c 6f
Take each hex value and change it to a different value.
48 -> 52
65 -> 55
etc.
After that, combine the hex values back into 1 string.
Thanks in advance