13 lines
230 B
C#
13 lines
230 B
C#
|
namespace BlueWest.Cryptography
|
||
|
{
|
||
|
public interface ISessionHasher
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Generates a token for the current session
|
||
|
/// </summary>
|
||
|
void GenerateSessionToken();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|