You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2021. It is now read-only.
We have a service which periodically needs to update the set of known keys which will be used to sign requests. The simplest way I can see to allow this is to have
validationKeys::JWKSet
become
validationKeys::Either (IOJWKSet) JWKSet
or something isomorphic to this. For our particular use case this happens frequently enough that it would be better to not have to shoot the service in the head to periodically fetch the latest keys.