CodeLiturgy.Dashboard/CodeLiturgy.Views/Application/Users/Auth/Crypto/ISessionHasher.cs

13 lines
230 B
C#
Raw Normal View History

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