feat(infra): move authentication implementations and add ITokenGenerator

This commit is contained in:
Stevan Freeborn
2026-02-03 04:38:40 -06:00
parent c4d0bf78ab
commit a1b993bd62
6 changed files with 50 additions and 37 deletions
@@ -1,7 +0,0 @@
namespace FiscalOS.Core.Identity;
public interface IPasswordHasher
{
string Hash(string password);
bool Verify(string providedPassword, string hashedPassword);
}