/* SPDX-License-Identifier: GPL-2.0-or-later */ /* ASN.1 BER/DER/CER parsing state machine internal definitions * * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. * Written by David Howells ([email protected]) */ #ifndef _LINUX_ASN1_BER_BYTECODE_H #define _LINUX_ASN1_BER_BYTECODE_H #ifdef __KERNEL__ #include <linux/types.h> #endif #include <linux/asn1.h> asn1_action_t; struct asn1_decoder { … }; enum asn1_opcode { … }; #define _tag(CLASS, CP, TAG) … #define _tagn(CLASS, CP, TAG) … #define _jump_target(N) … #define _action(N) … #endif /* _LINUX_ASN1_BER_BYTECODE_H */