2026-01-20 02:14:01 +01:00
|
|
|
|
namespace TimetableDesigner.Backend.Services.Authentication.Core.Helpers;
|
2026-01-13 02:47:09 +01:00
|
|
|
|
|
|
|
|
|
|
public interface IPasswordHasher
|
|
|
|
|
|
{
|
|
|
|
|
|
PasswordHashData CreateHash(string password);
|
2026-01-13 02:47:34 +01:00
|
|
|
|
bool ValidatePassword(PasswordHashData hash, string password);
|
2026-01-13 02:47:09 +01:00
|
|
|
|
}
|