public JwksService(IJsonWebKeyStore store, IJsonWebKeyService jwkService, IOptions <JwksOptions> options)
 {
     _store      = store;
     _jwkService = jwkService;
     _options    = options;
 }
Exemple #2
0
 public TokenConfigService(IEnvironmentWrapper env, IJsonWebKeyService jwkService, IJsonWebKeyClient jwkClient)
 {
     _env        = env;
     _jwkService = jwkService;
     _jwkClient  = jwkClient;
 }