RsaTokenKeyResponse

data class RsaTokenKeyResponse(val alg: String, val e: String, val kid: String, val n: String, val type: String)

Required validation properties for tokens generated with RSA algorithm.

Constructors

Link copied to clipboard
constructor(alg: String, e: String, kid: String, n: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val alg: String

RSA algorithm to be used: RS256, RS384 or RS512.

Link copied to clipboard
val e: String

RSA public key exponent.

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
val n: String

RSA public key modulus.

Link copied to clipboard

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