C# Class Renci.SshNet.Security.DsaKey

Contains DSA private and public key
Inheritance: Key, 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.

DsaKey ( ) : System

Initializes a new instance of the DsaKey class.

DsaKey ( BigInteger p, BigInteger q, BigInteger g, BigInteger y, BigInteger x ) : System

Initializes a new instance of the DsaKey class.

DsaKey ( byte data ) : System

Initializes a new instance of the DsaKey class.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

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

DsaKey() public méthode

Initializes a new instance of the DsaKey class.
public DsaKey ( ) : System
Résultat System

DsaKey() public méthode

Initializes a new instance of the DsaKey class.
public DsaKey ( BigInteger p, BigInteger q, BigInteger g, BigInteger y, BigInteger x ) : System
p BigInteger The p.
q BigInteger The q.
g BigInteger The g.
y BigInteger The y.
x BigInteger The x.
Résultat System

DsaKey() public méthode

Initializes a new instance of the DsaKey class.
public DsaKey ( byte data ) : System
data byte DER encoded private key data.
Résultat System