CodeLiturgy.Dashboard/BlueWest.Api/Users/Auth/Crypto/ISessionHasher.cs

13 lines
230 B
C#
Raw Normal View History

2022-09-17 22:13:35 +03:00
namespace BlueWest.Cryptography
{
public interface ISessionHasher
{
/// <summary>
/// Generates a token for the current session
/// </summary>
void GenerateSessionToken();
}
}