Property name | Description |
---|---|
alg | The specific cryptographic algorithm used with the key. This is an optional parameter. By default, Auth0 includes the signing algorithm defined at the tenant level in the JSON Web Key Set (JWKS), which is then published. To allow for keys to be used with multiple algorithms rather than a single algorithm i.e. RS256, toggle off Include Signing Algorithms in JSON Web Key Set under Advanced Tenant settings in Dashboard. This removes the alg parameter and requires consumers of the JWKS to interpret the signing algorithms as needed. |
kty | The family of cryptographic algorithms used with the key. |
use | How the key was meant to be used; sig represents the signature. |
x5c | The x.509 certificate chain. The first entry in the array is the certificate to use for token verification; the other certificates can be used to verify this first certificate. |
n | The modulus for the RSA public key. |
e | The exponent for the RSA public key. |
kid | The unique identifier for the key. |
x5t | The thumbprint of the x.509 cert (SHA-1 thumbprint). |