Skip to main content
Version: v0.8.0

JWKS

keys object[]required

The key set

  • Array [
  • algstring
    Example: RS256
    crvstring
    Example: P-256
    estring
    Example: AQAB
    extboolean
    Example: false
    key_opsstring[]
    Example: ["sign","verify"]
    kidstring
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    ktystringrequired
    Example: RSA
    nstring
    Example: sample_modulus
    usestring
    Example: sig
    xstring
    Example: sample_x_coordinate
    ystring
    Example: sample_y_coordinate
  • ]
  • JWKS
    {
    "keys": [
    {
    "alg": "RS256",
    "crv": "P-256",
    "e": "AQAB",
    "ext": false,
    "key_ops": [
    "sign",
    "verify"
    ],
    "kid": "bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d",
    "kty": "RSA",
    "n": "sample_modulus",
    "use": "sig",
    "x": "sample_x_coordinate",
    "y": "sample_y_coordinate"
    }
    ]
    }