RSAPrivateKey constructor

RSAPrivateKey(
  1. BigInt modulus,
  2. BigInt exponent,
  3. BigInt p,
  4. BigInt q,
)

Create an RSAPrivateKey for the given parameters.

Implementation

RSAPrivateKey(BigInt modulus, BigInt exponent, BigInt p, BigInt q)
    : _privateKey = pointy.RSAPrivateKey(modulus, exponent, p, q);