main project split, authpassword endpoint created

This commit is contained in:
2026-01-20 02:14:01 +01:00
Unverified
parent a01e8666a3
commit 49e6c8a643
32 changed files with 246 additions and 104 deletions

View File

@@ -0,0 +1,7 @@
namespace TimetableDesigner.Backend.Services.Authentication.Core.Helpers;
public interface IPasswordHasher
{
PasswordHashData CreateHash(string password);
bool ValidatePassword(PasswordHashData hash, string password);
}