8 lines
177 B
C#
8 lines
177 B
C#
|
|
namespace LingAdmin.API.Services;
|
||
|
|
|
||
|
|
public interface IPasswordHasher
|
||
|
|
{
|
||
|
|
string HashPassword(string password);
|
||
|
|
bool VerifyPassword(string password, string passwordHash);
|
||
|
|
}
|