2014-09-12 05:23:46 +08:00
|
|
|
#include "cmdhfmf.h"
|
2015-01-07 04:08:20 +08:00
|
|
|
#include "cmdhf14a.h"
|
2015-01-07 00:43:31 +08:00
|
|
|
|
2015-03-24 18:45:31 +08:00
|
|
|
#ifndef CMDHFMFU_H__
|
|
|
|
#define CMDHFMFU_H__
|
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
int CmdHF14AMfUWrBl(const char *Cmd);
|
|
|
|
int CmdHF14AMfURdBl(const char *Cmd);
|
2015-01-07 04:08:20 +08:00
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
//Crypto Cards
|
|
|
|
int CmdHF14AMfucAuth(const char *Cmd);
|
2015-12-15 16:34:55 +08:00
|
|
|
int CmdHF14AMfucSetPwd(const char *Cmd);
|
|
|
|
int CmdHF14AMfucSetUid(const char *Cmd);
|
|
|
|
int CmdHF14AMfuGenDiverseKeys(const char *Cmd);
|
2016-02-24 15:31:46 +08:00
|
|
|
int CmdHF14AMfuPwdGen(const char *Cmd);
|
2014-09-12 05:23:46 +08:00
|
|
|
|
|
|
|
//general stuff
|
2015-01-07 04:08:20 +08:00
|
|
|
int CmdHF14AMfUDump(const char *Cmd);
|
2015-05-19 02:58:33 +08:00
|
|
|
int CmdHF14AMfUInfo(const char *Cmd);
|
2015-12-15 16:34:55 +08:00
|
|
|
int CmdHF14AMfUeLoad(const char *Cmd);
|
|
|
|
int CmdHF14AMfUSim(const char *Cmd);
|
2015-06-24 01:22:40 +08:00
|
|
|
|
2015-05-21 05:44:11 +08:00
|
|
|
uint32_t GetHF14AMfU_Type(void);
|
2015-05-21 03:03:58 +08:00
|
|
|
int ul_print_type(uint32_t tagtype, uint8_t spacer);
|
2015-05-13 00:55:34 +08:00
|
|
|
void ul_switch_off_field(void);
|
|
|
|
|
2015-05-19 02:58:33 +08:00
|
|
|
int usage_hf_mfu_info(void);
|
2015-12-15 16:34:55 +08:00
|
|
|
int usage_hf_mfu_dump(void);
|
2015-05-21 05:44:11 +08:00
|
|
|
int usage_hf_mfu_rdbl(void);
|
|
|
|
int usage_hf_mfu_wrbl(void);
|
2015-06-24 01:22:40 +08:00
|
|
|
int usage_hf_mfu_eload(void);
|
2015-12-15 16:34:55 +08:00
|
|
|
int usage_hf_mfu_sim(void);
|
|
|
|
int usage_hf_mfu_ucauth(void);
|
|
|
|
int usage_hf_mfu_ucsetpwd(void);
|
|
|
|
int usage_hf_mfu_ucsetuid(void);
|
2016-01-10 00:17:36 +08:00
|
|
|
int usage_hf_mfu_gendiverse(void);
|
2016-02-24 15:31:46 +08:00
|
|
|
int usage_hf_mfu_pwdgen(void);
|
2015-04-30 02:24:37 +08:00
|
|
|
|
2014-09-12 05:23:46 +08:00
|
|
|
int CmdHFMFUltra(const char *Cmd);
|
2015-05-13 00:55:34 +08:00
|
|
|
|
2015-12-03 05:46:11 +08:00
|
|
|
uint32_t ul_ev1_pwdgenA(uint8_t* uid);
|
2016-01-10 00:17:36 +08:00
|
|
|
uint32_t ul_ev1_pwdgenA(uint8_t* uid);
|
|
|
|
uint32_t ul_ev1_pwdgenC(uint8_t* uid);
|
2015-12-03 05:46:11 +08:00
|
|
|
|
2016-02-24 15:31:46 +08:00
|
|
|
uint16_t ul_ev1_packgenA(uint8_t* uid);
|
|
|
|
uint16_t ul_ev1_packgenA(uint8_t* uid);
|
|
|
|
uint16_t ul_ev1_packgenA(uint8_t* uid);
|
|
|
|
|
2015-05-13 00:55:34 +08:00
|
|
|
typedef enum TAGTYPE_UL {
|
2015-05-21 01:20:26 +08:00
|
|
|
UNKNOWN = 0x000000,
|
|
|
|
UL = 0x000001,
|
|
|
|
UL_C = 0x000002,
|
|
|
|
UL_EV1_48 = 0x000004,
|
|
|
|
UL_EV1_128 = 0x000008,
|
|
|
|
NTAG = 0x000010,
|
2015-05-21 02:06:46 +08:00
|
|
|
NTAG_203 = 0x000020,
|
|
|
|
NTAG_210 = 0x000040,
|
|
|
|
NTAG_212 = 0x000080,
|
2015-05-21 01:20:26 +08:00
|
|
|
NTAG_213 = 0x000100,
|
|
|
|
NTAG_215 = 0x000200,
|
|
|
|
NTAG_216 = 0x000400,
|
|
|
|
MY_D = 0x000800,
|
|
|
|
MY_D_NFC = 0x001000,
|
|
|
|
MY_D_MOVE = 0x002000,
|
|
|
|
MY_D_MOVE_NFC = 0x004000,
|
2015-06-02 18:20:16 +08:00
|
|
|
MY_D_MOVE_LEAN= 0x008000,
|
|
|
|
NTAG_I2C_1K = 0x010000,
|
|
|
|
NTAG_I2C_2K = 0x020000,
|
2015-06-21 17:07:05 +08:00
|
|
|
FUDAN_UL = 0x040000,
|
|
|
|
MAGIC = 0x080000,
|
2015-05-13 00:55:34 +08:00
|
|
|
UL_MAGIC = UL | MAGIC,
|
|
|
|
UL_C_MAGIC = UL_C | MAGIC,
|
2015-05-21 03:03:58 +08:00
|
|
|
UL_ERROR = 0xFFFFFF,
|
2015-05-13 00:55:34 +08:00
|
|
|
} TagTypeUL_t;
|
|
|
|
|
2015-03-24 18:45:31 +08:00
|
|
|
#endif
|