2011-06-18 02:39:54 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Merlok - June 2011
|
|
|
|
// Gerhard de Koning Gans - May 2008
|
|
|
|
// Hagen Fritsch - June 2010
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Routines to support ISO 14443 type A.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __MIFARECMD_H
|
|
|
|
#define __MIFARECMD_H
|
|
|
|
|
2015-07-23 05:00:52 +08:00
|
|
|
#include "proxmark3.h"
|
2011-06-18 02:39:54 +08:00
|
|
|
#include "apps.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "string.h"
|
2015-07-23 05:00:52 +08:00
|
|
|
#include "iso14443crc.h"
|
2011-06-18 02:39:54 +08:00
|
|
|
#include "iso14443a.h"
|
2017-07-30 16:01:30 +08:00
|
|
|
#include "crapto1/crapto1.h"
|
2011-06-18 02:39:54 +08:00
|
|
|
#include "mifareutil.h"
|
2015-07-23 05:00:52 +08:00
|
|
|
#include "common.h"
|
2017-01-21 17:35:59 +08:00
|
|
|
#include "crc.h"
|
|
|
|
#include "protocols.h"
|
|
|
|
#include "parity.h"
|
2011-06-18 02:39:54 +08:00
|
|
|
#endif
|