RSAPublicKeyWithInfo constructor

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

Constructor from RSA public values.

Implementation

RSAPublicKeyWithInfo(BigInt modulus, BigInt exponent)
    : super(modulus, exponent);