tgstation-server  4.4.0
The /tg/station 13 server suite
ITokenFactory.cs
Go to the documentation of this file.
1 using Microsoft.IdentityModel.Tokens;
2 using System.Threading;
3 using System.Threading.Tasks;
5 
6 namespace Tgstation.Server.Host.Security
7 {
11  public interface ITokenFactory
12  {
16  TokenValidationParameters ValidationParameters { get; }
17 
24  Task<Token> CreateToken(Models.User user, CancellationToken cancellationToken);
25  }
26 }