Initializes a new instance of the RsaPrivateCrtKeyParameters class

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

Syntax

C#
public RsaPrivateCrtKeyParameters(
	BigInteger modulus,
	BigInteger publicExponent,
	BigInteger privateExponent,
	BigInteger p,
	BigInteger q,
	BigInteger dP,
	BigInteger dQ,
	BigInteger qInv
)
Visual Basic
Public Sub New ( _
	modulus As BigInteger, _
	publicExponent As BigInteger, _
	privateExponent As BigInteger, _
	p As BigInteger, _
	q As BigInteger, _
	dP As BigInteger, _
	dQ As BigInteger, _
	qInv As BigInteger _
)
Visual C++
public:
RsaPrivateCrtKeyParameters(
	BigInteger^ modulus, 
	BigInteger^ publicExponent, 
	BigInteger^ privateExponent, 
	BigInteger^ p, 
	BigInteger^ q, 
	BigInteger^ dP, 
	BigInteger^ dQ, 
	BigInteger^ qInv
)

See Also