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