KeySignParameters Constructors

Definition

Overloads

KeySignParameters()

Initializes a new instance of the KeySignParameters class.

KeySignParameters(String, Byte[])

Initializes a new instance of the KeySignParameters class.

KeySignParameters()

Source:
KeySignParameters.cs

Initializes a new instance of the KeySignParameters class.

public KeySignParameters ();
Public Sub New ()

Applies to

KeySignParameters(String, Byte[])

Source:
KeySignParameters.cs

Initializes a new instance of the KeySignParameters class.

public KeySignParameters (string algorithm, byte[] value);
new Microsoft.Azure.KeyVault.Models.KeySignParameters : string * byte[] -> Microsoft.Azure.KeyVault.Models.KeySignParameters
Public Sub New (algorithm As String, value As Byte())

Parameters

algorithm
String

The signing/verification algorithm identifier. For more information on possible algorithm types, see JsonWebKeySignatureAlgorithm. Possible values include: 'PS256', 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL', 'ES256', 'ES384', 'ES512', 'ECDSA256'

value
Byte[]

Applies to