EccTokenKey Constructors

Definition

Overloads

EccTokenKey()

Initializes a new instance of the EccTokenKey class.

EccTokenKey(String, AccessPolicyEccAlgo, String, String)

Initializes a new instance of the EccTokenKey class.

EccTokenKey()

Initializes a new instance of the EccTokenKey class.

public EccTokenKey ();
Public Sub New ()

Applies to

EccTokenKey(String, AccessPolicyEccAlgo, String, String)

Initializes a new instance of the EccTokenKey class.

public EccTokenKey (string kid, Microsoft.Azure.Management.VideoAnalyzer.Models.AccessPolicyEccAlgo alg, string x, string y);
new Microsoft.Azure.Management.VideoAnalyzer.Models.EccTokenKey : string * Microsoft.Azure.Management.VideoAnalyzer.Models.AccessPolicyEccAlgo * string * string -> Microsoft.Azure.Management.VideoAnalyzer.Models.EccTokenKey
Public Sub New (kid As String, alg As AccessPolicyEccAlgo, x As String, y As String)

Parameters

kid
String

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

alg
AccessPolicyEccAlgo

Elliptical curve algorithm to be used: ES256, ES384 or ES512. Possible values include: 'ES256', 'ES384', 'ES512'

x
String

X coordinate.

y
String

Y coordinate.

Applies to