7 lines
155 B
C#
7 lines
155 B
C#
namespace AMREZ.EOP.Abstractions.Security;
|
|
|
|
public interface IPasswordHasher
|
|
{
|
|
bool Verify(string plain, string hash);
|
|
string Hash(string plain);
|
|
} |