コード例 #1
0
ファイル: UserManagement.cs プロジェクト: jpreecedev/WebCal
        public static string Encrypt(string password)
        {
            if (string.IsNullOrEmpty(password))
            {
                return(string.Empty);
            }

            return(StringCipher.GetPasswordHash(password));
        }