C# Class Renci.SshNet.Security.Cryptography.RsaDigitalSignature

Implements RSA digital signature algorithm.
Inheritance: CipherDigitalSignature, IDisposable
Mostra file Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

RsaDigitalSignature ( RsaKey rsaKey ) : System

Initializes a new instance of the RsaDigitalSignature class.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

Hash ( byte input ) : byte[]

Hashes the specified input.

Method Details

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

Dispose() protected method

Releases unmanaged and - optionally - managed resources
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

Hash() protected method

Hashes the specified input.
protected Hash ( byte input ) : byte[]
input byte The input.
return byte[]

RsaDigitalSignature() public method

Initializes a new instance of the RsaDigitalSignature class.
public RsaDigitalSignature ( RsaKey rsaKey ) : System
rsaKey RsaKey The RSA key.
return System