RSAPrivateKeyWithInfo.fromRSAPrivateKey constructor

RSAPrivateKeyWithInfo.fromRSAPrivateKey(
  1. RSAPrivateKey pc
)

Constructor from Pointy Castle RSAPrivateKey.

Implementation

RSAPrivateKeyWithInfo.fromRSAPrivateKey(pointy_castle.RSAPrivateKey pc)
    : super(pc.p! * pc.q!, pc.privateExponent!, pc.p, pc.q);