9 lines
188 B
C#
9 lines
188 B
C#
namespace MyNewProjectName.Application.Interfaces.Common;
|
|
|
|
public interface IPasswordHasher
|
|
{
|
|
string Hash(string password);
|
|
bool Verify(string password, string hashedPassword);
|
|
}
|
|
|