summaryrefslogtreecommitdiff
path: root/include/rfid/rfid_protocol_mifare_classic.h
blob: 64ef11e12f50fc9c4a313632c48ed8fc291bd552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _MIFARE_CLASSIC_H

extern struct rfid_protocol rfid_protocol_mfcl;

#define RFID_CMD_MIFARE_AUTH1A	0x60
#define RFID_CMD_MIFARE_AUTH1B	0x61

#define MIFARE_CL_CMD_WRITE16	0xA0
#define MIFARE_CL_CMD_READ	0x30

#define MIFARE_CL_RESP_ACK	0x0a
#define MIFARE_CL_RESP_NAK	0x00

#define MIFARE_CL_PAGE_MAX	0xff

#define MIFARE_CLASSIC_KEYA_DEFAULT	"\xa0\xa1\xa2\xa3\xa4\xa5"
#define MIFARE_CLASSIC_KEYB_DEFAULT	"\xb0\xb1\xb2\xb3\xb4\xb5"


#endif
personal git repositories of Harald Welte. Your mileage may vary