Interface IPasswordHasher

Assembly: redb.Core.dll

Interface for password hashing operations.
Implementations should use secure hashing algorithms (bcrypt, PBKDF2, etc.)

public interface IPasswordHasher

Methods

HashPassword(string)

Hash a plain-text password.

string HashPassword(string password)

VerifyPassword(string, string)

Verify a password against a hash.

bool VerifyPassword(string password, string hashedPassword)