AsymmetricSignatureProvider Constructors

Definition

Overloads

AsymmetricSignatureProvider(SecurityKey, String)

Initializes a new instance of the AsymmetricSignatureProvider class used to create and verify signatures.

AsymmetricSignatureProvider(SecurityKey, String, Boolean)

Initializes a new instance of the AsymmetricSignatureProvider class used to create and verify signatures.

AsymmetricSignatureProvider(SecurityKey, String)

Initializes a new instance of the AsymmetricSignatureProvider class used to create and verify signatures.

public AsymmetricSignatureProvider (Microsoft.IdentityModel.Tokens.SecurityKey key, string algorithm);
new Microsoft.IdentityModel.Tokens.AsymmetricSignatureProvider : Microsoft.IdentityModel.Tokens.SecurityKey * string -> Microsoft.IdentityModel.Tokens.AsymmetricSignatureProvider
Public Sub New (key As SecurityKey, algorithm As String)

Parameters

key
SecurityKey

The SecurityKey that will be used for signature operations.SecurityKey

algorithm
String

The signature algorithm to apply.

Applies to

AsymmetricSignatureProvider(SecurityKey, String, Boolean)

Initializes a new instance of the AsymmetricSignatureProvider class used to create and verify signatures.

public AsymmetricSignatureProvider (Microsoft.IdentityModel.Tokens.SecurityKey key, string algorithm, bool willCreateSignatures);
new Microsoft.IdentityModel.Tokens.AsymmetricSignatureProvider : Microsoft.IdentityModel.Tokens.SecurityKey * string * bool -> Microsoft.IdentityModel.Tokens.AsymmetricSignatureProvider
Public Sub New (key As SecurityKey, algorithm As String, willCreateSignatures As Boolean)

Parameters

key
SecurityKey

The SecurityKey that will be used for signature operations.

algorithm
String

The signature algorithm to apply.

willCreateSignatures
Boolean

If this AsymmetricSignatureProvider is required to create signatures then set this to true.

Exceptions

algorithmis null or empty.

If the runtime is unable to create a suitable cryptographic provider.

If SecurityKey and algorithm pair are not supported.

SecurityKey.KeySize is less than the size corresponding to the algorithm in MinimumAsymmetricKeySizeInBitsForVerifyingMap. Note: this is always checked.

Applies to