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";
export type OtherRevocationInfoFormatParameters = PkiObjectParameters & Partial<IOtherRevocationInfoFormat>;
/** * Represents the OtherRevocationInfoFormat structure described in [RFC5652](https://datatracker.ietf.org/doc/html/rfc5652)
*/
export class OtherRevocationInfoFormat extends PkiObject implements IOtherRevocationInfoFormat {
public otherRevInfoFormat!: string; public otherRevInfo: any;
/** * Initializes a new instance of the {@link OtherRevocationInfoFormat} class * @param parameters Initialization parameters
*/
constructor(parameters: OtherRevocationInfoFormatParameters = {}) { 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
*/ static override defaultValues(memberName: typeof OTHER_REV_INFO_FORMAT): string; static override defaultValues(memberName: typeof OTHER_REV_INFO): any; static override defaultValues(memberName: string): any { switch (memberName) { case OTHER_REV_INFO_FORMAT: return EMPTY_STRING; case OTHER_REV_INFO: returnnew asn1js.Any(); default: returnsuper.defaultValues(memberName);
}
}
return (new asn1js.Sequence({
name: (names.blockName || EMPTY_STRING),
value: [ new asn1js.ObjectIdentifier({ name: (names.otherRevInfoFormat || OTHER_REV_INFO_FORMAT) }), new asn1js.Any({ name: (names.otherRevInfo || OTHER_REV_INFO) })
]
}));
}
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,
OtherRevocationInfoFormat.schema()
);
AsnError.assertSchema(asn1, this.className);
// Get internal properties from parsed schema this.otherRevInfoFormat = asn1.result.otherRevInfoFormat.valueBlock.toString(); this.otherRevInfo = asn1.result.otherRevInfo;
}
public toSchema(): asn1js.Sequence { // Construct and return new ASN.1 schema for this object return (new asn1js.Sequence({
value: [ new asn1js.ObjectIdentifier({ value: this.otherRevInfoFormat }), this.otherRevInfo
]
}));
}
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.