コード例 #1
0
 public bool CheckPassword(string userPassword)
 {
     try
     {
         return(_password == Encrypting.GetMd5HashForString(userPassword));
     }
     catch (Exception)
     {
         return(false);
     }
 }
コード例 #2
0
ファイル: User.cs プロジェクト: DashaTyshch/TextEditor
 public bool CheckPassword(string password)
 {
     try
     {
         string res2 = Encrypting.GetMd5HashForString(password);
         return(Password == res2);
     }
     catch (Exception)
     {
         return(false);
     }
 }
コード例 #3
0
ファイル: User.cs プロジェクト: DashaTyshch/TextEditor
 private void SetPassword(string password)
 {
     Password = Encrypting.GetMd5HashForString(password);
 }