import { type jose } from "https://deno.land/x/jwe_cookie_map@v1.0.0-rc0/deps.ts";
const { RemoteJWKSetOptions } = jose;
Options for the remote JSON Web Key Set.
Properties
Timeout (in milliseconds) for the HTTP request. When reached the request will be aborted and the verification will fail. Default is 5000 (5 seconds).
Duration (in milliseconds) for which no more HTTP requests will be triggered after a previous successful fetch. Default is 30000 (30 seconds).
Maximum time (in milliseconds) between successful HTTP requests. Default is 600000 (10 minutes).
An instance of http.Agent or https.Agent to pass to the http.get or https.get method's options. Use when behind an http(s) proxy. This is a Node.js runtime specific option, it is ignored when used outside of Node.js runtime.