import * as asn1js from "asn1js"; import * as pvutils from "pvutils"; import { EMPTY_STRING } from "./constants"; import { AsnError } from "./errors"; import { id_ContentType_Data, id_ContentType_EncryptedData, id_ContentType_EnvelopedData, id_ContentType_SignedData } from "./ObjectIdentifiers"; import { PkiObject, PkiObjectParameters } from "./PkiObject"; import * as Schema from "./Schema";
/** * Represents the ContentInfo structure described in [RFC5652](https://datatracker.ietf.org/doc/html/rfc5652)
*/
export class ContentInfo extends PkiObject implements IContentInfo {
/** * Initializes a new instance of the {@link ContentInfo} class * @param parameters Initialization parameters
*/
constructor(parameters: ContentInfoParameters = {}) { super();
if (parameters.schema) { this.fromSchema(parameters.schema);
}
}
/** * Returns default values for all class members * @param memberName String name for a class member * @returns Default value
*/ publicstatic override defaultValues(memberName: typeof CONTENT_TYPE): string; publicstatic override defaultValues(memberName: typeof CONTENT): any; publicstatic override defaultValues(memberName: string): any { switch (memberName) { case CONTENT_TYPE: return EMPTY_STRING; case CONTENT: returnnew asn1js.Any(); default: returnsuper.defaultValues(memberName);
}
}
/** * Compare values with default values for all class members * @param memberName String name for a class member * @param memberValue Value to compare with default value
*/ static compareWithDefault<T>(memberName: string, memberValue: T): memberValue is T { switch (memberName) { case CONTENT_TYPE: return (typeof memberValue === "string" &&
memberValue === this.defaultValues(CONTENT_TYPE)); case CONTENT: return (memberValue instanceof asn1js.Any); default: returnsuper.defaultValues(memberName);
}
}
if (("optional" in names) === false) {
names.optional = false;
}
return (new asn1js.Sequence({
name: (names.blockName || "ContentInfo"),
optional: names.optional,
value: [ new asn1js.ObjectIdentifier({ name: (names.contentType || CONTENT_TYPE) }), new asn1js.Constructed({
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0// [0]
},
value: [new asn1js.Any({ name: (names.content || CONTENT) })] // EXPLICIT ANY value
})
]
}));
}
public fromSchema(schema: Schema.SchemaType): void { // Clear input data first
pvutils.clearProps(schema, CLEAR_PROPS);
// Check the schema is valid const asn1 = asn1js.compareSchema(schema,
schema,
ContentInfo.schema()
);
AsnError.assertSchema(asn1, this.className);
// Get internal properties from parsed schema this.contentType = asn1.result.contentType.valueBlock.toString(); this.content = asn1.result.content;
}
public toSchema(): asn1js.Sequence { //#region Construct and return new ASN.1 schema for this object return (new asn1js.Sequence({
value: [ new asn1js.ObjectIdentifier({ value: this.contentType }), new asn1js.Constructed({
idBlock: {
tagClass: 3, // CONTEXT-SPECIFIC
tagNumber: 0// [0]
},
value: [this.content] // EXPLICIT ANY value
})
]
})); //#endregion
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.