RsaTokenKey Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.