Share via


KeyVerifyParameters Constructors

Definition

Overloads

KeyVerifyParameters()

Initializes a new instance of the KeyVerifyParameters class.

KeyVerifyParameters(String, Byte[], Byte[])

Initializes a new instance of the KeyVerifyParameters class.

KeyVerifyParameters()

Source:
KeyVerifyParameters.cs

Initializes a new instance of the KeyVerifyParameters class.

public KeyVerifyParameters ();
Public Sub New ()

Applies to

KeyVerifyParameters(String, Byte[], Byte[])

Source:
KeyVerifyParameters.cs

Initializes a new instance of the KeyVerifyParameters class.

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

Parameters

algorithm
String

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

digest
Byte[]

The digest used for signing.

signature
Byte[]

The signature to be verified.

Applies to