7 lines
No EOL
199 B
C#
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);
|
|
} |