コード例 #1
0
 public string Hash(string password, int iterations)
 {
     return(SecurePasswordHasher.Hash(password, iterations));
 }
コード例 #2
0
 public bool IsHashSupported(string hashString)
 {
     return(SecurePasswordHasher.IsHashSupported(hashString));
 }
コード例 #3
0
 public bool Verify(string password, string hashedPassword)
 {
     return(SecurePasswordHasher.Verify(password, hashedPassword));
 }
コード例 #4
0
 public string Hash(string password)
 {
     return(SecurePasswordHasher.Hash(password));
 }