]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/cmdhfmfu.h
FIX: lf hitag : Mea culpa, simulation should not have reader_field on. thanks to...
[proxmark3-svn] / client / cmdhfmfu.h
... / ...
CommitLineData
1#include "cmdhfmf.h"
2#include "cmdhf14a.h"
3
4#ifndef CMDHFMFU_H__
5#define CMDHFMFU_H__
6
7int CmdHF14AMfUWrBl(const char *Cmd);
8int CmdHF14AMfURdBl(const char *Cmd);
9
10//Crypto Cards
11int CmdHF14AMfucAuth(const char *Cmd);
12int CmdHF14AMfucSetPwd(const char *Cmd);
13int CmdHF14AMfucSetUid(const char *Cmd);
14int CmdHF14AMfuGenDiverseKeys(const char *Cmd);
15int CmdHF14AMfuPwdGen(const char *Cmd);
16
17//general stuff
18int CmdHF14AMfUDump(const char *Cmd);
19int CmdHF14AMfUInfo(const char *Cmd);
20int CmdHF14AMfUeLoad(const char *Cmd);
21int CmdHF14AMfUSim(const char *Cmd);
22
23uint32_t GetHF14AMfU_Type(void);
24int ul_print_type(uint32_t tagtype, uint8_t spacer);
25void ul_switch_off_field(void);
26
27int usage_hf_mfu_info(void);
28int usage_hf_mfu_dump(void);
29int usage_hf_mfu_rdbl(void);
30int usage_hf_mfu_wrbl(void);
31int usage_hf_mfu_eload(void);
32int usage_hf_mfu_sim(void);
33int usage_hf_mfu_ucauth(void);
34int usage_hf_mfu_ucsetpwd(void);
35int usage_hf_mfu_ucsetuid(void);
36int usage_hf_mfu_gendiverse(void);
37int usage_hf_mfu_pwdgen(void);
38
39int CmdHFMFUltra(const char *Cmd);
40
41uint32_t ul_ev1_pwdgenA(uint8_t* uid);
42uint32_t ul_ev1_pwdgenA(uint8_t* uid);
43uint32_t ul_ev1_pwdgenC(uint8_t* uid);
44
45uint16_t ul_ev1_packgenA(uint8_t* uid);
46uint16_t ul_ev1_packgenA(uint8_t* uid);
47uint16_t ul_ev1_packgenA(uint8_t* uid);
48
49typedef enum TAGTYPE_UL {
50 UNKNOWN = 0x000000,
51 UL = 0x000001,
52 UL_C = 0x000002,
53 UL_EV1_48 = 0x000004,
54 UL_EV1_128 = 0x000008,
55 NTAG = 0x000010,
56 NTAG_203 = 0x000020,
57 NTAG_210 = 0x000040,
58 NTAG_212 = 0x000080,
59 NTAG_213 = 0x000100,
60 NTAG_215 = 0x000200,
61 NTAG_216 = 0x000400,
62 MY_D = 0x000800,
63 MY_D_NFC = 0x001000,
64 MY_D_MOVE = 0x002000,
65 MY_D_MOVE_NFC = 0x004000,
66 MY_D_MOVE_LEAN= 0x008000,
67 NTAG_I2C_1K = 0x010000,
68 NTAG_I2C_2K = 0x020000,
69 FUDAN_UL = 0x040000,
70 MAGIC = 0x080000,
71 UL_MAGIC = UL | MAGIC,
72 UL_C_MAGIC = UL_C | MAGIC,
73 UL_ERROR = 0xFFFFFF,
74} TagTypeUL_t;
75
76#endif
Impressum, Datenschutz