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
Specifies per-purpose maximum response body size limits (in bytes) for external HTTPS resource fetches. When a limit is defined for a given purpose, the authorization server will bail out early on `Content-Length` header values exceeding the limit and will also abort reading the response body when the accumulated size exceeds the limit. Purposes with a limit of `Infinity` will not enforce any size restriction.
3637
+
3638
+
3639
+
_**default value**_:
3640
+
```js
3641
+
{
3642
+
jwks_uri:Infinity,
3643
+
sector_identifier_uri:Infinity
3644
+
}
3645
+
```
3646
+
3647
+
---
3648
+
3631
3649
### formats.bitsOfOpaqueRandomness
3632
3650
3633
3651
Specifies the entropy configuration for opaque token generation. The value shall be an integer (or a function returning an integer) that determines the cryptographic strength of generated opaque tokens. The resulting opaque token length shall be calculated as `Math.ceil(i /Math.log2(n))` where `i` is the specified bit count and `n` is the number of symbols in the encoding alphabet (64 characters in the base64url character set used by this implementation).
0 commit comments