KSC Open API
Kaspersky Security Center API description
EntraID SSO Jwks

Array of Jwks tokens is described below.

NameTypeDescription
jwks_arrayparamArrayArray of Jwks tokens. Each entry of the array is a (paramParams) container that contains attributes (see the table below).


Attributes of the Jwks token container with the IKlAkParams data type are presented below.

NameTypeDescription
algparamStringAlgorithm (alg). Indicates the algorithm that was used to sign the token.
kidparamStringKey ID (kid). Thumbprint for the public key used to verify this token.
x5tparamStringX.509 Certificate SHA-1 Thumbprint (x5t).
x5c_pemparamBinaryX.509 Certificate Chain (x5c) in PEM-format.


Example:

    +--- (paramParams)
    +---jwks_array
        +---0
            +---alg
            +---kid
            +---x5t
            +---x5c_pem
        +---1
            ...