]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - include/hitagS.h
Fix hitagS sources to compile on gcc 4.9.3
[proxmark3-svn] / include / hitagS.h
... / ...
CommitLineData
1//-----------------------------------------------------------------------------
2// This code is licensed to you under the terms of the GNU GPL, version 2 or,
3// at your option, any later version. See the LICENSE.txt file for the text of
4// the license.
5//-----------------------------------------------------------------------------
6// HitagS emulation (preliminary test version)
7//
8// (c) 2016 Oguzhan Cicek, Hendrik Schwartke, Ralf Spenneberg
9// <info@os-s.de>
10//-----------------------------------------------------------------------------
11
12
13#include <stdlib.h>
14#include <string.h>
15#include <hitag2.h>
16
17#ifndef _HITAGS_H_
18#define _HITAGS_H_
19
20typedef enum PROTO_STATE {READY=0,INIT,AUTHENTICATE,SELECTED,QUIET,TTF,FAIL} PSTATE; //protocol-state
21typedef enum TAG_STATE {NO_OP=0,READING_PAGE,WRITING_PAGE_ACK,WRITING_PAGE_DATA,WRITING_BLOCK_DATA} TSATE; //tag-state
22typedef enum SOF_TYPE {STANDARD=0,ADVANCED,FAST_ADVANCED,ONE,NO_BITS} stype; //number of start-of-frame bits
23
24struct hitagS_tag {
25 PSTATE pstate; //protocol-state
26 TSATE tstate; //tag-state
27 uint32_t uid;
28 uint32_t pages[16][4];
29 uint64_t key;
30 byte_t pwdl0,pwdl1,pwdh0;
31 //con0
32 int max_page;
33 stype mode;
34 //con1
35 bool auth; //0=Plain 1=Auth
36 bool TTFC; //Transponder Talks first coding. 0=Manchester 1=Biphase
37 int TTFDR; //data rate in TTF Mode
38 int TTFM; //the number of pages that are sent to the RWD
39 bool LCON; //0=con1/2 read write 1=con1 read only and con2 OTP
40 bool LKP; //0=page2/3 read write 1=page2/3 read only in Plain mode and no access in authenticate mode
41 //con2
42 //0=read write 1=read only
43 bool LCK7; //page4/5
44 bool LCK6; //page6/7
45 bool LCK5; //page8-11
46 bool LCK4; //page12-15
47 bool LCK3; //page16-23
48 bool LCK2; //page24-31
49 bool LCK1; //page32-47
50 bool LCK0; //page48-63
51} ;
52
53#endif
Impressum, Datenschutz