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