示例#1
0
文件: User.cs 项目: nonozelmar/Exceed
 public bool VerifyPassword(string password)
 {
     return(Hashing.Verify(password, this.PasswordHash));
 }
示例#2
0
文件: User.cs 项目: nonozelmar/Exceed
 public User(string username, string email, string password)
 {
     this.Name         = username;
     this.Email        = email;
     this.PasswordHash = Hashing.Hash(password);
 }