survey-webapp/SurveyBackend/SurveyBackend.Infrastructure/Services/IPasswordHasher.cs
2025-04-08 19:08:17 +05:00

7 lines
No EOL
199 B
C#

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