Hello
Dont ask why but lets say I want to encrypt "hello" and the encrypted forum is "238324"
I want to do:
String avariable=dcrypt(238324); //avariable should now hold hello
public string dcrypt(String encryptedtext)
{
//do decrypt stuff
return descriptedtext; //decriptedtext should be hello
}
Basically thats what I want.....Dont care for algoritim AES MD5 etc....
Thanks