CSR/CSR.Domain/Interfaces/IPasswordHasher.cs

7 lines
188 B
C#

namespace CSR.Domain.Interfaces;
public interface IPasswordHasher
{
string HashPassword(string password);
bool VerifyHashedPassword(string hashedPassword, string providedPassword);
}