mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-13 13:20:45 +08:00
27 lines
No EOL
849 B
C
27 lines
No EOL
849 B
C
//-----------------------------------------------------------------------------
|
|
// 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
|
|
|
|
#include "../include/proxmark3.h"
|
|
#include "apps.h"
|
|
#include "util.h"
|
|
#include "string.h"
|
|
|
|
#include "../common/iso14443crc.h"
|
|
#include "iso14443a.h"
|
|
#include "crapto1.h"
|
|
#include "mifareutil.h"
|
|
#include "../include/common.h"
|
|
|
|
#endif |