/Get JWKS (Json Web Key Sets)
Get JWKS (Json Web Key Sets)
Returns JWKS keys set for validation id token.
Each key contains:
Key Elements
Parameter | Type | Description |
---|---|---|
kid | string | The unique identifier for the key. |
alg | string | The specific cryptographic algorithm used with the key.. |
kty | string | The family of cryptographic algorithms used with the key. |
use | string | How the key was meant to be used; sig represents the signature. |
x5c | array of string | 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 | string | The modulus for the RSA public key. |
e | string | The exponent for the RSA public key. |
x5t | string | The thumbprint of the x.509 cert (SHA-1 thumbprint). |
Updated 7 months ago