mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
8 lines
192 B
C#
8 lines
192 B
C#
namespace ShoppingAssistantApi.Application.IServices.Identity;
|
|
|
|
public interface IPasswordHasher
|
|
{
|
|
string Hash(string password);
|
|
|
|
bool Check(string password, string passwordHash);
|
|
} |