import { OBJECT_IDENTIFIER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { ParamOptions } from "../AlgorithmInformation-2009/ParamOptions.ta.mjs"; /** * @summary DIGEST_ALGORITHM * @description * * ### ASN.1 Definition: * * ```asn1 * DIGEST-ALGORITHM ::= CLASS { * &id OBJECT IDENTIFIER UNIQUE, * &Params OPTIONAL, * ¶mPresence ParamOptions DEFAULT absent * } WITH SYNTAX { * IDENTIFIER &id * [PARAMS [TYPE &Params] ARE ¶mPresence ] * } * ``` * * @interface */ export interface DIGEST_ALGORITHM { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: "DIGEST-ALGORITHM"; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof DIGEST_ALGORITHM]: $.ASN1Decoder[_K]>; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof DIGEST_ALGORITHM]: $.ASN1Encoder[_K]>; }>; /** * @summary &id */ readonly "&id"?: OBJECT_IDENTIFIER; /** * @summary &Params */ readonly "&Params": Params; /** * @summary ¶mPresence */ readonly "¶mPresence"?: ParamOptions; } //# sourceMappingURL=DIGEST-ALGORITHM.oca.d.mts.map