C# Class Renci.SshNet.Security.DsaKey

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

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.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

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

DsaKey() public method

Initializes a new instance of the DsaKey class.
public DsaKey ( ) : System
return System

DsaKey() public method

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.
return System

DsaKey() public method

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