SymmetricSecurityKey in ASP.NET CORE
asp.net, jwt
Solution
For me it required `using Microsoft.IdentityModel.Tokens;`
Problem
I'm trying to create Asp.NET Core API and add Jwt authentication. In all examples, that I've found so far is used SymmetricSecurityKey. I've added Aspnetcore.Authentication.JwtBearer package but there is doesn't exist SymmetricSecurityKey. What package I've to add to resolve dependency to this class? Thank you in advance.