import { OBJECT_IDENTIFIER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary CURVE * @description * * ### ASN.1 Definition: * * ```asn1 * CURVE ::= CLASS { &id OBJECT IDENTIFIER UNIQUE } * WITH SYNTAX { ID &id } * ``` * * @interface */ export interface CURVE { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: "CURVE"; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof CURVE]: $.ASN1Decoder; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof CURVE]: $.ASN1Encoder; }>; /** * @summary &id */ readonly "&id"?: OBJECT_IDENTIFIER; } //# sourceMappingURL=CURVE.oca.d.mts.map