createFromNums static method

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

Implementation

static CryptAsymmPublicKey createFromNums(BigInt e, BigInt n) {
  return new CryptAsymmPublicKey(e, n);
}