fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git] / client / src / crypto / asn1dump.h
blob21caae36df1dcc2dc65dca1d699b8c7ef2a9ecf2
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2018 Merlok
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // asn.1 dumping
9 //-----------------------------------------------------------------------------
10 #ifndef ASN1DUMP_H
11 #define ASN1DUMP_H
13 #include <stdint.h>
14 #include <stdbool.h>
15 #include <stddef.h>
16 #include "emv/tlv.h"
18 bool asn1_tag_dump(const struct tlv *tlv, int level, bool *candump);
20 #endif /* asn1utils.h */