EccTokenKeyResponse

data class EccTokenKeyResponse(val alg: String, val kid: String, val type: String, val x: String, val y: String)

Required validation properties for tokens generated with Elliptical Curve algorithm.

Constructors

Link copied to clipboard
constructor(alg: String, kid: String, type: String, x: String, y: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val alg: String

Elliptical curve algorithm to be used: ES256, ES384 or ES512.

Link copied to clipboard
val kid: String

JWT token key id. Validation keys are looked up based on the key id present on the JWT token header.

Link copied to clipboard

The discriminator for derived types. Expected value is '#Microsoft.VideoAnalyzer.EccTokenKey'.

Link copied to clipboard
val x: String

X coordinate.

Link copied to clipboard
val y: String

Y coordinate.