2019-03-16 04:04:25 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Merlok - June 2011, 2012
|
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Mifare Classic Card Simulation
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __MIFARESIM_H
|
|
|
|
#define __MIFARESIM_H
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
#include "common.h"
|
2019-03-16 04:04:25 +08:00
|
|
|
|
2019-04-09 16:12:15 +08:00
|
|
|
#ifndef CheckCrc14A
|
2019-07-24 06:52:24 +08:00
|
|
|
# define CheckCrc14A(data, len) check_crc(CRC_14443_A, (data), (len))
|
2019-04-09 16:12:15 +08:00
|
|
|
#endif
|
|
|
|
|
2019-03-16 04:04:25 +08:00
|
|
|
#define AC_DATA_READ 0
|
|
|
|
#define AC_DATA_WRITE 1
|
|
|
|
#define AC_DATA_INC 2
|
2019-07-24 06:52:24 +08:00
|
|
|
#define AC_DATA_DEC_TRANS_REST 3
|
2019-03-16 04:04:25 +08:00
|
|
|
#define AC_KEYA_READ 0
|
|
|
|
#define AC_KEYA_WRITE 1
|
|
|
|
#define AC_KEYB_READ 2
|
|
|
|
#define AC_KEYB_WRITE 3
|
|
|
|
#define AC_AC_READ 4
|
|
|
|
#define AC_AC_WRITE 5
|
|
|
|
|
|
|
|
#define AUTHKEYA 0
|
|
|
|
#define AUTHKEYB 1
|
|
|
|
#define AUTHKEYNONE 0xff
|
|
|
|
|
2019-08-08 22:57:33 +08:00
|
|
|
void Mifare1ksim(uint16_t flags, uint8_t exitAfterNReads, uint8_t *datain, uint16_t atqa, uint8_t sak);
|
|
|
|
|
2019-04-07 01:09:01 +08:00
|
|
|
#endif
|