8 lines
220 B
C#
8 lines
220 B
C#
namespace MikrocopApi.Services;
|
|
|
|
public interface IPasswordHashingService
|
|
{
|
|
(string Hash, string Salt) HashPassword(string password);
|
|
bool VerifyPassword(string password, string hashBase64, string saltBase64);
|
|
}
|