RSAPublicKey constructor

RSAPublicKey(
  1. BigInt n,
  2. BigInt e
)

Implementation

RSAPublicKey(this.n, this.e) {
  _engine = RSAEncryptionEngine(this);
}