Initializes a new instance of the RsaPublicBcpgKey class

Namespace: Org.BouncyCastle.Bcpg
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public RsaPublicBcpgKey(
	BigInteger n,
	BigInteger e
)
Visual Basic
Public Sub New ( _
	n As BigInteger, _
	e As BigInteger _
)
Visual C++
public:
RsaPublicBcpgKey(
	BigInteger^ n, 
	BigInteger^ e
)

Parameters

n
Type: Org.BouncyCastle.Math..::..BigInteger
The modulus.
e
Type: Org.BouncyCastle.Math..::..BigInteger
The public exponent.

See Also