Share via


RsaTokenKey Constructors

Definition

Overloads

RsaTokenKey()

Initializes a new instance of the RsaTokenKey class.

RsaTokenKey(String, AccessPolicyRsaAlgo, String, String)

Initializes a new instance of the RsaTokenKey class.

RsaTokenKey()

Initializes a new instance of the RsaTokenKey class.

public RsaTokenKey ();
Public Sub New ()

Applies to

RsaTokenKey(String, AccessPolicyRsaAlgo, String, String)

Initializes a new instance of the RsaTokenKey class.

public RsaTokenKey (string kid, Microsoft.Azure.Management.VideoAnalyzer.Models.AccessPolicyRsaAlgo alg, string n, string e);
new Microsoft.Azure.Management.VideoAnalyzer.Models.RsaTokenKey : string * Microsoft.Azure.Management.VideoAnalyzer.Models.AccessPolicyRsaAlgo * string * string -> Microsoft.Azure.Management.VideoAnalyzer.Models.RsaTokenKey
Public Sub New (kid As String, alg As AccessPolicyRsaAlgo, n As String, e 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
AccessPolicyRsaAlgo

RSA algorithm to be used: RS256, RS384 or RS512. Possible values include: 'RS256', 'RS384', 'RS512'

n
String

RSA public key modulus.

e
String

RSA public key exponent.

Applies to