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);
        }