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