Skip to main content

ContentInfo

Represents the ContentInfo structure described in RFC5652

Extends

Implements

Constructors

new ContentInfo()

new ContentInfo(parameters): ContentInfo

Initializes a new instance of the ContentInfo class

Parameters

parameters: ContentInfoParameters = {}

Initialization parameters

Returns

ContentInfo

Overrides

PkiObject.constructor

Properties

content

content: any

Implementation of

IContentInfo.content


contentType

contentType: string

Implementation of

IContentInfo.contentType


CLASS_NAME

static CLASS_NAME: string = "ContentInfo"

Name of the class

Overrides

PkiObject.CLASS_NAME


DATA

readonly static DATA: "1.2.840.113549.1.7.1" = id_ContentType_Data


ENCRYPTED_DATA

readonly static ENCRYPTED_DATA: "1.2.840.113549.1.7.6" = id_ContentType_EncryptedData


ENVELOPED_DATA

readonly static ENVELOPED_DATA: "1.2.840.113549.1.7.3" = id_ContentType_EnvelopedData


SIGNED_DATA

readonly static SIGNED_DATA: "1.2.840.113549.1.7.2" = id_ContentType_SignedData

Accessors

className

get className(): string

Returns

string

Inherited from

PkiObject.className

Methods

fromSchema()

fromSchema(schema): void

Converts parsed ASN.1 object into current class

Parameters

schema: any

ASN.1 schema

Returns

void

Overrides

PkiObject.fromSchema


toJSON()

toJSON(): ContentInfoJson

Converts the class to JSON object

Returns

ContentInfoJson

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

encoding: "base64" | "base64url" | "hex" = "hex"

Returns

string

Inherited from

PkiObject.toString


blockName()

static blockName(): string

Returns block name

Returns

string

Returns string block name

Inherited from

PkiObject.blockName


compareWithDefault()

static compareWithDefault<T>(memberName, memberValue): memberValue is T

Compare values with default values for all class members

Type Parameters

T

Parameters

memberName: string

String name for a class member

memberValue: T

Value to compare with default value

Returns

memberValue is T


defaultValues()

defaultValues(memberName)

static defaultValues(memberName): string

Returns default values for all class members

Parameters

memberName: "contentType"

String name for a class member

Returns

string

Default value

Overrides

PkiObject.defaultValues

defaultValues(memberName)

static defaultValues(memberName): any

Returns default values for all class members

Parameters

memberName: "content"

String name for a class member

Returns

any

Default value

Overrides

PkiObject.defaultValues


fromBER()

static fromBER<T>(this, raw): T

Creates PKI object from the raw data

Type Parameters

T extends PkiObject

Parameters

this: PkiObjectConstructor<T>

raw: BufferSource

ASN.1 encoded raw data

Returns

T

Initialized and filled current class object

Inherited from

PkiObject.fromBER


schema()

static schema(parameters): any

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

Parameters

parameters: ContentInfoSchema = {}

Input parameters for the schema

Returns

any

ASN.1 schema object

Overrides

PkiObject.schema