C# Класс Renci.SshNet.Security.DsaKey

Contains DSA private and public key
Наследование: Key, IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

Описание методов

Dispose() публичный Метод

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

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.
Результат void

DsaKey() публичный Метод

Initializes a new instance of the DsaKey class.
public DsaKey ( ) : System
Результат System

DsaKey() публичный Метод

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.
Результат System

DsaKey() публичный Метод

Initializes a new instance of the DsaKey class.
public DsaKey ( byte data ) : System
data byte DER encoded private key data.
Результат System