RSAPublicKey

Represents an RSA public key.

Constructor

function constructor(n: bigint, e: bigint): this;

Parameters

  • n: Modulus
  • e: Public exponent

Methods

Properties

interface Properties {
	n: bigint;
	e: bigint;
}
  • n
  • e