RSAPublicKey constructor

RSAPublicKey(
  1. BigInt modulus,
  2. BigInt exponent
)

Create an RSAPublicKey for the given parameters.

Implementation

RSAPublicKey(BigInt modulus, BigInt exponent)
    : _publicKey = pointy.RSAPublicKey(modulus, exponent);