Hi i created one function for encryption using md5 an base 64
public string HashString(string s)
        {
            return Convert.ToBase64String(Hash.ComputeHash(Encoding.Unicode.GetBytes(s)));
        }
        private MD5 Hash
        {
            get
            {
                return MD5.Create();
            }
        }
is it possible to decode to original string from the encrypted value because the i had done this for password and i want to decode the same for admin users
