Files

7 lines
231 B
C#
Raw Permalink Normal View History

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
}