feat(core): add password hashing and token generation interfaces
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace FiscalOS.Core.Authentication;
|
||||
|
||||
public interface ITokenGenerator
|
||||
{
|
||||
string GenerateAccessToken(User user);
|
||||
RefreshToken GenerateRefreshToken(User user);
|
||||
}
|
||||
Reference in New Issue
Block a user