Create minimal app

This commit is contained in:
danial23 2025-05-20 03:05:37 -04:00
parent 6b87902ca7
commit 27aaee6293
Signed by: danial23
SSH key fingerprint: SHA256:IJ8VP0j2WMUVweTYnzUUnEjNgPnGx+mAt+RhqWZ01bU
17 changed files with 346 additions and 52 deletions

View file

@ -71,7 +71,7 @@ public class User
}
public bool VerifyPasswordAgainstHash(string providedPassword, IPasswordHasher passwordHasher)
public bool VerifyPassword(string providedPassword, IPasswordHasher passwordHasher)
{
return passwordHasher.VerifyHashedPassword(this, PasswordHash, providedPassword);
}