]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/mifareutil.h
1. small bugfix in hf 14a mifare
[proxmark3-svn] / armsrc / mifareutil.h
CommitLineData
20f9a2a1
M
1//-----------------------------------------------------------------------------\r
2// Merlok, May 2011\r
3// Many authors, that makes it possible\r
4//\r
5// This code is licensed to you under the terms of the GNU GPL, version 2 or,\r
6// at your option, any later version. See the LICENSE.txt file for the text of\r
7// the license.\r
8//-----------------------------------------------------------------------------\r
9// code for work with mifare cards.\r
10//-----------------------------------------------------------------------------\r
11\r
4abe4f58
M
12#define CRYPT_NONE 0\r
13#define CRYPT_ALL 1\r
14#define CRYPT_REQUEST 2\r
15#define AUTH_FIRST 0\r
16#define AUTH_NESTED 2\r
17\r
50193c1e
M
18//mifare emulate states\r
19#define MFEMUL_NOFIELD 0\r
20#define MFEMUL_IDLE 1\r
21#define MFEMUL_SELECT1 2\r
22#define MFEMUL_SELECT2 3\r
23#define MFEMUL_AUTH1 4\r
24#define MFEMUL_AUTH2 5\r
25#define MFEMUL_HALTED 6\r
26\r
27//functions\r
f89c7050
M
28uint8_t* mifare_get_bigbufptr(void);\r
29int mifare_sendcmd_short(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t data, uint8_t* answer);\r
30int mifare_sendcmd_shortex(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t data, uint8_t* answer, uint32_t * parptr);\r
31\r
20f9a2a1 32int mifare_classic_auth(struct Crypto1State *pcs, uint32_t uid, \\r
f89c7050
M
33 uint8_t blockNo, uint8_t keyType, uint64_t ui64Key, uint64_t isNested);\r
34int mifare_classic_authex(struct Crypto1State *pcs, uint32_t uid, \\r
35 uint8_t blockNo, uint8_t keyType, uint64_t ui64Key, uint64_t isNested, uint32_t * ntptr);\r
20f9a2a1
M
36int mifare_classic_readblock(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t *blockData); \r
37int mifare_classic_writeblock(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t *blockData);\r
38int mifare_classic_halt(struct Crypto1State *pcs, uint32_t uid); \r
39\r
Impressum, Datenschutz