Interface IPasswordHasher
Interface for password hashing operations.
Implementations should use secure hashing algorithms (bcrypt, PBKDF2, etc.)
public interface IPasswordHasher
Methods
VerifyPassword(string, string)
Verify a password against a hash.
bool VerifyPassword(string password, string hashedPassword)