feat(infra): move authentication implementations and add ITokenGenerator

This commit is contained in:
Stevan Freeborn
2026-02-02 13:17:59 -06:00
parent 098aa23c62
commit b3bfa64b96
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);
}