docs/jwks/remote/variables/jwksCache.md
Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.
⢠const jwksCache: unique symbol
[!WARNING]
This option has security implications that must be understood, assessed for applicability, and accepted before use. It is critical that the JSON Web Key Set cache only be writable by your own code.
This option is intended for cloud computing runtimes that cannot keep an in memory cache between their code's invocations. Use in runtimes where an in memory cache between requests is available is not desirable.
When passed to createRemoteJWKSet this allows the passed in object to:
The intended use pattern is:
{} instead when there's no previously cached value;uat property of
the object has changed.// Prerequisites
let url!: URL
let jwt!: string
let getPreviouslyCachedJWKS!: () => Promise<jose.ExportedJWKSCache>
let storeNewJWKScache!: (cache: jose.ExportedJWKSCache) => Promise<void>
// Load JSON Web Key Set cache
const jwksCache: jose.JWKSCacheInput = (await getPreviouslyCachedJWKS()) || {}
const { uat } = jwksCache
const JWKS = jose.createRemoteJWKSet(url, {
[jose.jwksCache]: jwksCache,
})
// Use JSON Web Key Set cache
await jose.jwtVerify(jwt, JWKS)
if (uat !== jwksCache.uat) {
// Update JSON Web Key Set cache
await storeNewJWKScache(jwksCache)
}