1 implementation of VerifyHashedPassword
Microsoft.Extensions.Identity.Core (1)
PasswordHasher.cs (1)
166
public virtual PasswordVerificationResult
VerifyHashedPassword
(TUser user, string hashedPassword, string providedPassword)
2 references to VerifyHashedPassword
Microsoft.AspNetCore.Identity.Test (1)
UserManagerTest.cs (1)
581
hasher.Setup(s => s.
VerifyHashedPassword
(user, hashed, pwd)).Returns(PasswordVerificationResult.SuccessRehashNeeded).Verifiable();
Microsoft.Extensions.Identity.Core (1)
UserManager.cs (1)
811
return PasswordHasher.
VerifyHashedPassword
(user, hash, password);