feat(core): add password hashing and token generation interfaces

This commit is contained in:
Stevan Freeborn
2026-02-03 04:38:40 -06:00
parent 2a1a03ef6c
commit 98de115259
7 changed files with 161 additions and 2 deletions
@@ -0,0 +1,7 @@
namespace FiscalOS.Core.Authentication;
public interface ITokenGenerator
{
string GenerateAccessToken(User user);
RefreshToken GenerateRefreshToken(User user);
}