Md5 encryption
hi
i use this code for encryption:
public string EncryptingPassword(string text)
{
//Return Encrypted Password
return System.Web.Security.FormsAuthentication.HashPasswo rdForStoringInConfigFile(text.Trim(), "MD5");
is the decryption of this code is possible ? how?
regards
rahul
|