]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdlfawid.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 // Low frequency AWID commands
9 //-----------------------------------------------------------------------------
14 #include <stdio.h> // sscanf
15 #include <stdbool.h> // bool
16 #include "proxmark3.h" // Definitions, USB controls, etc
17 #include "ui.h" // PrintAndLog
18 #include "cmdparser.h" // CmdsParse, CmdsHelp
19 #include "lfdemod.h" // parityTest
20 #include "util.h" // weigandparity
21 #include "cmdlf.h" // lf read
22 #include "protocols.h" // for T55xx config register definitions
27 int CmdLFAWID(const char *Cmd
);
28 int CmdAWIDDemodFSK(const char *Cmd
);
29 int CmdAWIDRead(const char *Cmd
);
30 int CmdAWIDSim(const char *Cmd
);
31 int CmdAWIDClone(const char *Cmd
);
32 int CmdAWIDBrute(const char *Cmd
);
33 int getAWIDBits(uint8_t fmtlen
, uint32_t fc
, uint32_t cn
, uint8_t *AWIDBits
);
34 int usage_lf_awid_fskdemod(void);
35 int usage_lf_awid_clone(void);
36 int usage_lf_awid_sim(void);
37 int usage_lf_awid_brute(void);