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

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

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

Hash ( byte input ) : byte[]

Hashes the specified input.

Method Details

Dispose() public méthode

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

Dispose() protected méthode

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.
Résultat void

Hash() protected méthode

Hashes the specified input.
protected Hash ( byte input ) : byte[]
input byte The input.
Résultat byte[]

RsaDigitalSignature() public méthode

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