import * as asn1js from "asn1js"; import * as pvutils from "pvutils"; import { EMPTY_STRING } from "./constants"; import { AsnError } from "./errors"; import { PkiObject, PkiObjectParameters } from "./PkiObject"; import * as Schema from "./Schema";
return (new asn1js.Sequence({
name: (names.blockName || EMPTY_STRING),
value: [ new asn1js.ObjectIdentifier({ name: (names.otherCertFormat || OTHER_CERT_FORMAT) }), new asn1js.Any({ name: (names.otherCert || OTHER_CERT) })
]
}));
}
public fromSchema(schema: any): void { // Clear input data first
pvutils.clearProps(schema, CLEAR_PROPS);
// Check the schema is valid const asn1 = asn1js.compareSchema(schema,
schema,
OtherCertificateFormat.schema()
);
AsnError.assertSchema(asn1, this.className);
// Get internal properties from parsed schema this.otherCertFormat = asn1.result.otherCertFormat.valueBlock.toString(); this.otherCert = asn1.result.otherCert;
}
public toSchema(): asn1js.Sequence { // Construct and return new ASN.1 schema for this object
return (new asn1js.Sequence({
value: [ new asn1js.ObjectIdentifier({ value: this.otherCertFormat }), this.otherCert
]
}));
}
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.