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