ABsoluteMaybe.Identification.CookieUserIdentification.Hash C# (CSharp) Метод

Hash() защищенный метод

protected Hash ( string text ) : string
text string
Результат string
        protected virtual string Hash(string text)
        {
            const string hashAlgo = "MD5";
            return FormsAuthentication.HashPasswordForStoringInConfigFile(text, hashAlgo);
        }