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

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

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

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

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

RsaKey ( ) : System

Initializes a new instance of the RsaKey class.

RsaKey ( BigInteger modulus, BigInteger exponent, BigInteger d, BigInteger p, BigInteger q, BigInteger inverseQ ) : System

Initializes a new instance of the RsaKey class.

RsaKey ( byte data ) : System

Initializes a new instance of the RsaKey class.

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

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

Releases unmanaged and - optionally - managed resources

Приватные методы

Метод Описание
PrimeExponent ( BigInteger privateExponent, BigInteger prime ) : BigInteger

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

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

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

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

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

Initializes a new instance of the RsaKey class.
public RsaKey ( BigInteger modulus, BigInteger exponent, BigInteger d, BigInteger p, BigInteger q, BigInteger inverseQ ) : System
modulus BigInteger The modulus.
exponent BigInteger The exponent.
d BigInteger The d.
p BigInteger The p.
q BigInteger The q.
inverseQ BigInteger The inverse Q.
Результат System

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

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