C# Класс Org.BouncyCastle.Bcpg.RsaPublicBcpgKey

Base class for an RSA public key.
Наследование: BcpgObject, IBcpgKey
Показать файл Открыть проект

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

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