Files
Govor/Govor.Application/Interfaces/Authentication/IJwtTokenHasher.cs
T
Artemy cc2921d257 Updeted Session Model and Session Opener Service
renamed RefreshToken in model to RefreshTokenHash - now we have a hash of token, not a token
2025-12-14 14:03:18 +07:00

7 lines
183 B
C#

namespace Govor.Application.Interfaces.Authentication;
public interface IJwtTokenHasher
{
string HashToken(string token);
bool VerifyToken(string token, string storedHash);
}