C# 클래스 Org.BouncyCastle.Bcpg.RsaPublicBcpgKey

Base class for an RSA public key.
상속: BcpgObject, IBcpgKey
파일 보기 프로젝트 열기: nonorganic/dssnet

공개 메소드들

메소드 설명
Encode ( BcpgOutputStream bcpgOut ) : void
GetEncoded ( ) : byte[]

Return the standard PGP encoding of the key.

RsaPublicBcpgKey ( BcpgInputStream bcpgIn ) : System

Construct an RSA public key from the passed in stream.

RsaPublicBcpgKey ( BigInteger n, BigInteger e ) : System

메소드 상세

Encode() 공개 메소드

public Encode ( BcpgOutputStream bcpgOut ) : void
bcpgOut BcpgOutputStream
리턴 void

GetEncoded() 공개 메소드

Return the standard PGP encoding of the key.
public GetEncoded ( ) : byte[]
리턴 byte[]

RsaPublicBcpgKey() 공개 메소드

Construct an RSA public key from the passed in stream.
public RsaPublicBcpgKey ( BcpgInputStream bcpgIn ) : System
bcpgIn BcpgInputStream
리턴 System

RsaPublicBcpgKey() 공개 메소드

public RsaPublicBcpgKey ( BigInteger n, BigInteger e ) : System
n Org.BouncyCastle.Math.BigInteger The modulus.
e Org.BouncyCastle.Math.BigInteger The public exponent.
리턴 System