I use this code for encryption of password,, Now i need the reverse of this that convert Hash to Plain Text plx help
byte[] data = Encoding.Unicode.GetBytes(password);
SHA1 algorithm = SHA1.Create();
byte[] hash = algorithm.ComputeHash(data);
string base64 = Convert.ToBase64String(hash);