CryptAsymmPublicKey constructor

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

Implementation

CryptAsymmPublicKey(BigInt e, BigInt n) {
  this.e = e;
  this.n = n;
  this.keySize = e.bitLength;
}