Key Parameters Required to Verify JWT Signatures
To verify the signature on a JSON Web Token (JWT), API gateways require the following key parameters are present in either the JWKS returned from a URI or the static JSON Web Key you specify.
| Key Parameter | Notes |
|---|---|
kid
|
The identifier of the key used to sign the JWT. The value must match the kid claim in the JWT header. For example, master_key. |
kty
|
The type of the key used to sign the JWT. Note that RSA is currently the only supported key type. |
use or key_ops
|
If the |
n
|
The public key modulus. |
e
|
The public key exponent. |
alg
|
The signing algorithm (if present) must be set to one of RS256, RS384 or RS512. |