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)
59
var successResult = hasher.
VerifyHashedPassword
(null, hashedPassword, "password 1");
63
var failedResult = hasher.
VerifyHashedPassword
(null, hashedPassword, "password 2");
121
var result = hasher.
VerifyHashedPassword
(null, hashedPassword, Plaintext_Password);
140
var result = hasher.
VerifyHashedPassword
(null, hashedPassword, Plaintext_Password);
162
var actualResult = hasher.
VerifyHashedPassword
(null, hashedPassword, Plaintext_Password);