]> git.zerfleddert.de Git - proxmark3-svn/blame - client/mifare/mad.h
Merge pull request #969 from pwpiwi/gcc10_fixes
[proxmark3-svn] / client / mifare / mad.h
CommitLineData
fdd9395d
OM
1//-----------------------------------------------------------------------------
2// Copyright (C) 2019 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// MIFARE Application Directory (MAD) functions
9//-----------------------------------------------------------------------------
10
11#ifndef _MAD_H_
12#define _MAD_H_
13
14#include <stdint.h>
15#include <stdbool.h>
16#include <stddef.h>
17
18typedef struct {
19 uint16_t AID;
20 const char *Description;
21} madAIDDescr;
22
23extern int MADCheck(uint8_t *sector0, uint8_t *sector10, bool verbose, bool *haveMAD2);
24extern int MADDecode(uint8_t *sector0, uint8_t *sector10, uint16_t *mad, size_t *madlen);
25extern int MAD1DecodeAndPrint(uint8_t *sector, bool verbose, bool *haveMAD2);
26extern int MAD2DecodeAndPrint(uint8_t *sector, bool verbose);
27
28
29#endif // _MAD_H_
Impressum, Datenschutz