RSAPublicKeyWithInfo.fromRSAPublicKey constructor

RSAPublicKeyWithInfo.fromRSAPublicKey(
  1. RSAPublicKey pcKey
)

Constructor from Pointy Castle RSAPublicKey.

Implementation

RSAPublicKeyWithInfo.fromRSAPublicKey(pointy_castle.RSAPublicKey pcKey)
    : super(pcKey.modulus!, pcKey.publicExponent!);