Skip to main content

Class: RSAPublicKey

Represents the RSAPublicKey structure described in RFC3447

Hierarchy

Implements

Constructors

constructor

new RSAPublicKey(parameters?): RSAPublicKey

Initializes a new instance of the RSAPublicKey class

Parameters

NameTypeDescription
parametersRSAPublicKeyParametersInitialization parameters

Returns

RSAPublicKey

Overrides

PkiObject.constructor

Properties

modulus

modulus: Integer

Modulus part of RSA public key

Implementation of

IRSAPublicKey.modulus


publicExponent

publicExponent: Integer

Public exponent of RSA public key

Implementation of

IRSAPublicKey.publicExponent


CLASS_NAME

Static CLASS_NAME: string = "RSAPublicKey"

Name of the class

Overrides

PkiObject.CLASS_NAME

Accessors

className

get className(): string

Returns

string

Inherited from

PkiObject.className

Methods

fromJSON

fromJSON(json): void

Converts JSON value into current object

Parameters

NameTypeDescription
jsonRSAPublicKeyJsonJSON object

Returns

void


fromSchema

fromSchema(schema): void

Converts parsed ASN.1 object into current class

Parameters

NameTypeDescription
schemaAsnTypeASN.1 schema

Returns

void

Overrides

PkiObject.fromSchema


toJSON

toJSON(): RSAPublicKeyJson

Converts the class to JSON object

Returns

RSAPublicKeyJson

JSON object

Overrides

PkiObject.toJSON


toSchema

toSchema(): Sequence

Converts current object to ASN.1 object and sets correct values

Returns

Sequence

ASN.1 object

Overrides

PkiObject.toSchema


toString

toString(encoding?): string

Parameters

NameTypeDefault value
encoding"base64" | "base64url" | "hex""hex"

Returns

string

Inherited from

PkiObject.toString


blockName

blockName(): string

Returns block name

Returns

string

Returns string block name

Inherited from

PkiObject.blockName


defaultValues

defaultValues(memberName): Integer

Returns default values for all class members

Parameters

NameTypeDescription
memberName"modulus" | "publicExponent"String name for a class member

Returns

Integer

Default value

Overrides

PkiObject.defaultValues


fromBER

fromBER<T>(this, raw): T

Creates PKI object from the raw data

Type parameters

NameType
Textends PkiObject

Parameters

NameTypeDescription
thisPkiObjectConstructor<T>-
rawBufferSourceASN.1 encoded raw data

Returns

T

Initialized and filled current class object

Inherited from

PkiObject.fromBER


schema

schema(parameters?): any

Returns value of pre-defined ASN.1 schema for current class

Parameters

NameTypeDescription
parametersSchemaParameters<{ modulus?: string ; publicExponent?: string }>Input parameters for the schema

Returns

any

ASN.1 schema object

Overrides

PkiObject.schema