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