import { INTEGER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary AuthenReasonSyntax * @description * * ### ASN.1 Definition: * * ```asn1 * AuthenReasonSyntax ::= INTEGER { * unknownUser(0), incorrectPassword(1), inaccessiblePassword(2), * passwordVerificationLoop(3), unrecognizedUser(4)} * ``` */ export type AuthenReasonSyntax = INTEGER; /** * @summary AuthenReasonSyntax_unknownUser * @constant * @type {number} */ export declare const AuthenReasonSyntax_unknownUser: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_unknownUser * @constant * @type {number} */ export declare const unknownUser: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_incorrectPassword * @constant * @type {number} */ export declare const AuthenReasonSyntax_incorrectPassword: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_incorrectPassword * @constant * @type {number} */ export declare const incorrectPassword: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_inaccessiblePassword * @constant * @type {number} */ export declare const AuthenReasonSyntax_inaccessiblePassword: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_inaccessiblePassword * @constant * @type {number} */ export declare const inaccessiblePassword: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_passwordVerificationLoop * @constant * @type {number} */ export declare const AuthenReasonSyntax_passwordVerificationLoop: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_passwordVerificationLoop * @constant * @type {number} */ export declare const passwordVerificationLoop: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_unrecognizedUser * @constant * @type {number} */ export declare const AuthenReasonSyntax_unrecognizedUser: AuthenReasonSyntax; /** * @summary AuthenReasonSyntax_unrecognizedUser * @constant * @type {number} */ export declare const unrecognizedUser: AuthenReasonSyntax; export declare const _decode_AuthenReasonSyntax: $.ASN1Decoder; export declare const _encode_AuthenReasonSyntax: $.ASN1Encoder; //# sourceMappingURL=AuthenReasonSyntax.ta.d.mts.map