]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhf14b.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // High frequency ISO14443B commands
9 //-----------------------------------------------------------------------------
18 #include "iso14443crc.h"
19 #include "proxmark3.h"
24 #include "cmdparser.h"
30 #include "mifare.h" // structs/enum for ISO14B
31 #include "protocols.h" // definitions of ISO14B protocol
33 int usage_hf_14b_info(void);
34 int usage_hf_14b_reader(void);
35 int usage_hf_14b_raw(void);
36 int usage_hf_14b_snoop(void);
37 int usage_hf_14b_sim(void);
38 int usage_hf_14b_read_srx(void);
39 int usage_hf_14b_write_srx(void);
41 int CmdHF14B(const char *Cmd
);
42 int CmdHF14BList(const char *Cmd
);
43 int CmdHF14BInfo(const char *Cmd
);
44 int CmdHF14BSim(const char *Cmd
);
45 int CmdHF14BSnoop(const char *Cmd
);
46 int CmdHF14BWrite( const char *cmd
);
47 int CmdHF14BReader(const char *Cmd
);
49 bool HF14BInfo(bool verbose
);
50 bool HF14BReader(bool verbose
);
51 int CmdHF14BCmdRaw (const char *Cmd
);
53 // SRi ST Microelectronics read/write
54 int CmdHF14BReadSri(const char *Cmd
);
55 int CmdHF14BWriteSri(const char *Cmd
);
57 bool waitCmd(bool verbose
);