tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ITokenFactory.cs
Go to the documentation of this file.
1using System;
2
3using Microsoft.IdentityModel.Tokens;
4
6
8{
12 public interface ITokenFactory
13 {
17 ReadOnlySpan<byte> SigningKeyBytes { get; set; }
18
22 TokenValidationParameters ValidationParameters { get; }
23
30 string CreateToken(Models.User user, bool oAuth);
31 }
32}
TokenValidationParameters ValidationParameters
The TokenValidationParameters for the ITokenFactory.
ReadOnlySpan< byte > SigningKeyBytes
Gets or sets the ITokenFactory's signing key bytes.
string CreateToken(Models.User user, bool oAuth)
Create a TokenResponse for a given user .