7 lines
231 B
C#
7 lines
231 B
C#
namespace TimetableDesigner.Backend.Services.Authentication.Core.Helpers;
|
|
|
|
public interface IPasswordHasher
|
|
{
|
|
PasswordHashData CreateHash(string password);
|
|
bool ValidatePassword(PasswordHashData hash, string password);
|
|
} |