mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 19:54:55 +00:00
cc2921d257
renamed RefreshToken in model to RefreshTokenHash - now we have a hash of token, not a token
7 lines
183 B
C#
7 lines
183 B
C#
namespace Govor.Application.Interfaces.Authentication;
|
|
|
|
public interface IJwtTokenHasher
|
|
{
|
|
string HashToken(string token);
|
|
bool VerifyToken(string token, string storedHash);
|
|
} |