Esempio n. 1
0
        public static string Encrypt(string password)
        {
            if (string.IsNullOrEmpty(password))
            {
                return(string.Empty);
            }

            return(StringCipher.GetPasswordHash(password));
        }