C# 클래스 Renci.SshNet.Security.RsaKey

Contains RSA private and public key
상속: Key, IDisposable
파일 보기 프로젝트 열기: sshnet/SSH.NET

공개 메소드들

메소드 설명
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