09.12.2012, 11:32
Hi,
need a function/algorithm to encrypt string to decimal(numbers only) and then when it's needed to decrypt it to string. A little example:
Thanks.
need a function/algorithm to encrypt string to decimal(numbers only) and then when it's needed to decrypt it to string. A little example:
Код:
new string[ ] = "top secret"; new estring; estring = encrypt_string(string); //estring is something like 1579123004 or etc. ... new dstring[50]; decrypt_string(dstring, estring); //string should be the same as dstring