RSAPKCS1SignatureDeformatter Constructors

Definition

Initializes a new instance of the RSAPKCS1SignatureDeformatter class.

Overloads

RSAPKCS1SignatureDeformatter()

Initializes a new instance of the RSAPKCS1SignatureDeformatter class.

RSAPKCS1SignatureDeformatter(AsymmetricAlgorithm)

Initializes a new instance of the RSAPKCS1SignatureDeformatter class with the specified key.

RSAPKCS1SignatureDeformatter()

Source:
RSAPKCS1SignatureDeformatter.cs
Source:
RSAPKCS1SignatureDeformatter.cs
Source:
RSAPKCS1SignatureDeformatter.cs

Initializes a new instance of the RSAPKCS1SignatureDeformatter class.

public:
 RSAPKCS1SignatureDeformatter();
public RSAPKCS1SignatureDeformatter ();
Public Sub New ()

Remarks

Use SetKey and SetHashAlgorithm to set the key and hash algorithm before calling VerifySignature.

See also

Applies to

RSAPKCS1SignatureDeformatter(AsymmetricAlgorithm)

Source:
RSAPKCS1SignatureDeformatter.cs
Source:
RSAPKCS1SignatureDeformatter.cs
Source:
RSAPKCS1SignatureDeformatter.cs

Initializes a new instance of the RSAPKCS1SignatureDeformatter class with the specified key.

public:
 RSAPKCS1SignatureDeformatter(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public RSAPKCS1SignatureDeformatter (System.Security.Cryptography.AsymmetricAlgorithm key);
new System.Security.Cryptography.RSAPKCS1SignatureDeformatter : System.Security.Cryptography.AsymmetricAlgorithm -> System.Security.Cryptography.RSAPKCS1SignatureDeformatter
Public Sub New (key As AsymmetricAlgorithm)

Parameters

key
AsymmetricAlgorithm

The instance of RSA that holds the public key.

Exceptions

key is null.

Remarks

Use SetHashAlgorithm to set the hash algorithm before calling VerifySignature.

See also

Applies to