Files
MikrocopTest/MikrocopApi/Services/Interfaces/IPasswordHashingService.cs

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);
}