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