main project split, authpassword endpoint created
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace TimetableDesigner.Backend.Services.Authentication.Core.Helpers;
|
||||
|
||||
public interface IPasswordHasher
|
||||
{
|
||||
PasswordHashData CreateHash(string password);
|
||||
bool ValidatePassword(PasswordHashData hash, string password);
|
||||
}
|
||||
Reference in New Issue
Block a user