import { ENUMERATED } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; export declare enum _enum_for_CASP_error { noReason = 0, unknownContentType = 1, unsupportedWLMPversion = 2, missingContent = 3, missingContentComponent = 4, invalidContentComponent = 5, sequenceError = 6, unknownSubject = 7, unknownCert = 8 } /** * @summary CASP_error * @description * * ### ASN.1 Definition: * * ```asn1 * CASP-error ::= ENUMERATED { * noReason (0), * unknownContentType (1), * unsupportedWLMPversion (2), * missingContent (3), * missingContentComponent (4), * invalidContentComponent (5), * sequenceError (6), * unknownSubject (7), * unknownCert (8), * ... } * ``` * * @enum {number} */ export type CASP_error = _enum_for_CASP_error | ENUMERATED; /** * @summary CASP_error_noReason * @constant * @type {number} */ export declare const CASP_error_noReason: CASP_error; /** * @summary noReason * @constant * @type {number} */ export declare const noReason: CASP_error; /** * @summary CASP_error_unknownContentType * @constant * @type {number} */ export declare const CASP_error_unknownContentType: CASP_error; /** * @summary unknownContentType * @constant * @type {number} */ export declare const unknownContentType: CASP_error; /** * @summary CASP_error_unsupportedWLMPversion * @constant * @type {number} */ export declare const CASP_error_unsupportedWLMPversion: CASP_error; /** * @summary unsupportedWLMPversion * @constant * @type {number} */ export declare const unsupportedWLMPversion: CASP_error; /** * @summary CASP_error_missingContent * @constant * @type {number} */ export declare const CASP_error_missingContent: CASP_error; /** * @summary missingContent * @constant * @type {number} */ export declare const missingContent: CASP_error; /** * @summary CASP_error_missingContentComponent * @constant * @type {number} */ export declare const CASP_error_missingContentComponent: CASP_error; /** * @summary missingContentComponent * @constant * @type {number} */ export declare const missingContentComponent: CASP_error; /** * @summary CASP_error_invalidContentComponent * @constant * @type {number} */ export declare const CASP_error_invalidContentComponent: CASP_error; /** * @summary invalidContentComponent * @constant * @type {number} */ export declare const invalidContentComponent: CASP_error; /** * @summary CASP_error_sequenceError * @constant * @type {number} */ export declare const CASP_error_sequenceError: CASP_error; /** * @summary sequenceError * @constant * @type {number} */ export declare const sequenceError: CASP_error; /** * @summary CASP_error_unknownSubject * @constant * @type {number} */ export declare const CASP_error_unknownSubject: CASP_error; /** * @summary unknownSubject * @constant * @type {number} */ export declare const unknownSubject: CASP_error; /** * @summary CASP_error_unknownCert * @constant * @type {number} */ export declare const CASP_error_unknownCert: CASP_error; /** * @summary unknownCert * @constant * @type {number} */ export declare const unknownCert: CASP_error; export declare const _decode_CASP_error: $.ASN1Decoder; export declare const _encode_CASP_error: $.ASN1Encoder; //# sourceMappingURL=CASP-error.ta.d.mts.map