C# Class Org.BouncyCastle.Bcpg.RsaPublicBcpgKey

Base class for an RSA public key.
Inheritance: BcpgObject, IBcpgKey
Afficher le fichier Open project: nonorganic/dssnet

Méthodes publiques

Méthode Description
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

Method Details

Encode() public méthode

public Encode ( BcpgOutputStream bcpgOut ) : void
bcpgOut BcpgOutputStream
Résultat void

GetEncoded() public méthode

Return the standard PGP encoding of the key.
public GetEncoded ( ) : byte[]
Résultat byte[]

RsaPublicBcpgKey() public méthode

Construct an RSA public key from the passed in stream.
public RsaPublicBcpgKey ( BcpgInputStream bcpgIn ) : System
bcpgIn BcpgInputStream
Résultat System

RsaPublicBcpgKey() public méthode

public RsaPublicBcpgKey ( BigInteger n, BigInteger e ) : System
n Org.BouncyCastle.Math.BigInteger The modulus.
e Org.BouncyCastle.Math.BigInteger The public exponent.
Résultat System