Represents the public key portion of an RSA asymmetric key.

interface PublicKey {
    exponent?: number[];
    modulus?: number[];
}

Properties

Properties

exponent?: number[]

Gets or sets the exponent for the public key.

modulus?: number[]

Gets or sets the modulus for the public key.