8 lines
159 B
C#
8 lines
159 B
C#
|
|
namespace PruebaGentle.Core.Interfaces;
|
||
|
|
|
||
|
|
public interface IPasswordHasher
|
||
|
|
{
|
||
|
|
string Hash(string password);
|
||
|
|
bool Verify(string password, string hash);
|
||
|
|
}
|