1 instantiation of JwtIssuer
dotnet-user-jwts (1)
Commands\CreateCommand.cs (1)
235
var jwtIssuer = new
JwtIssuer
(options.Issuer, keyMaterial);
3 references to JwtIssuer
dotnet-user-jwts (3)
Commands\CreateCommand.cs (2)
235
var
jwtIssuer = new JwtIssuer(options.Issuer, keyMaterial);
239
var jwt = Jwt.Create(options.Scheme, jwtToken,
JwtIssuer
.WriteToken(jwtToken), options.Scopes, options.Roles, options.Claims);
Commands\PrintCommand.cs (1)
53
JwtSecurityToken fullToken =
JwtIssuer
.Extract(jwt.Token);