I want to encrypt and decrypt a string this way
Encryption
string ----> convert to hexadecimal ----> some maths operations on the hex to get a new hex
the decryption:
hex ----> reverse the maths operations to get the first hex -----> convert to string
is it possible to do this type of encryption decription... and How to convert the hex (octal or even base32 or base64 to the original string)?
Thank you