Implemented interface member:
method
VerifyHashedPassword
Microsoft.AspNetCore.Identity.IPasswordHasher<TUser>.VerifyHashedPassword(TUser, System.String, System.String)
5 references to VerifyHashedPassword
Microsoft.AspNetCore.Identity.Test (5)
PasswordHasherTest.cs (5)
59var successResult = hasher.VerifyHashedPassword(null, hashedPassword, "password 1"); 63var failedResult = hasher.VerifyHashedPassword(null, hashedPassword, "password 2"); 121var result = hasher.VerifyHashedPassword(null, hashedPassword, Plaintext_Password); 140var result = hasher.VerifyHashedPassword(null, hashedPassword, Plaintext_Password); 162var actualResult = hasher.VerifyHashedPassword(null, hashedPassword, Plaintext_Password);