KSC Open API
Kaspersky Security Center API description
|
Array of Jwks tokens is described below.
Name | Type | Description |
---|---|---|
jwks_array | paramArray | Array 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.
Name | Type | Description |
---|---|---|
alg | paramString | Algorithm (alg). Indicates the algorithm that was used to sign the token. |
kid | paramString | Key ID (kid). Thumbprint for the public key used to verify this token. |
x5t | paramString | X.509 Certificate SHA-1 Thumbprint (x5t). |
x5c_pem | paramBinary | X.509 Certificate Chain (x5c) in PEM-format. |
Example:
+--- (paramParams) +---jwks_array +---0 +---alg +---kid +---x5t +---x5c_pem +---1 ...