survey-webapp/SurveyBackend/SurveyBackend.Core/Services/IPasswordHasher.cs

7 lines
No EOL
189 B
C#

namespace SurveyBackend.Core.Services;
public interface IPasswordHasher
{
public string HashPassword(string password);
public bool Verify(string password, string hashedPassword);
}