]>
Commit | Line | Data |
---|---|---|
f38a1528 | 1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2014 Iceman | |
3 | // | |
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 | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // High frequency MIFARE Desfire commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | int CmdHFMFDes(const char *Cmd); | |
12 | int CmdHF14ADesAuth(const char* cmd); | |
13 | int CmdHF14ADesRb(const char* cmd); | |
14 | int CmdHF14ADesWb(const char* cmd); | |
15 | int CmdHF14ADesInfo(const char *Cmd); | |
16 | int CmdHF14ADesEnumApplications(const char *Cmd); | |
95e63594 | 17 | |
f38a1528 | 18 | char * GetCardSizeStr( uint8_t fsize ); |
19 | char * GetVendorStr( uint8_t id); | |
20 | char * GetProtocolStr(uint8_t id); | |
f6c18637 | 21 | void GetKeySettings( uint8_t * aid); |
313ee67e | 22 | |
75465377 | 23 | // Command options for Desfire behavior. |
24 | enum { | |
25 | NONE = 0x00, | |
26 | INIT = 0x01, | |
27 | DISCONNECT = 0x02, | |
f6c18637 | 28 | CLEARTRACE = 0x04, |
75465377 | 29 | BAR = 0x08, |
30 | } CmdOptions ; | |
313ee67e | 31 | |
32 | ||
f6c18637 | 33 | #define CREATE_APPLICATION 0xca |
34 | #define DELETE_APPLICATION 0xda | |
35 | #define GET_APPLICATION_IDS 0x6a | |
36 | #define SELECT_APPLICATION 0x5a | |
37 | #define FORMAT_PICC 0xfc | |
313ee67e | 38 | #define GET_VERSION 0x60 |
39 | #define READ_DATA 0xbd | |
40 | #define WRITE_DATA 0x3d | |
41 | #define GET_VALUE 0x6c | |
42 | #define CREDIT 0x0c | |
43 | #define DEBIT 0xdc | |
44 | #define LIMITED_CREDIT 0x1c | |
45 | #define WRITE_RECORD 0x3b | |
46 | #define READ_RECORDS 0xbb | |
47 | #define CLEAR_RECORD_FILE 0xeb | |
48 | #define COMMIT_TRANSACTION 0xc7 | |
49 | #define ABORT_TRANSACTION 0xa7 | |
50 | #define GET_FREE_MEMORY 0x6e | |
51 | #define GET_FILE_IDS 0x6f | |
f6c18637 | 52 | #define GET_ISOFILE_IDS 0x61 |
313ee67e | 53 | #define GET_FILE_SETTINGS 0xf5 |
54 | #define CHANGE_FILE_SETTINGS 0x5f | |
55 | #define CREATE_STD_DATA_FILE 0xcd | |
56 | #define CREATE_BACKUP_DATA_FILE 0xcb | |
57 | #define CREATE_VALUE_FILE 0xcc | |
58 | #define CREATE_LINEAR_RECORD_FILE 0xc1 | |
59 | #define CREATE_CYCLIC_RECORD_FILE 0xc0 | |
60 | #define DELETE_FILE 0xdf | |
61 | #define AUTHENTICATE 0x0a // AUTHENTICATE_NATIVE | |
62 | #define AUTHENTICATE_ISO 0x1a // AUTHENTICATE_STANDARD | |
63 | #define AUTHENTICATE_AES 0xaa | |
64 | #define CHANGE_KEY_SETTINGS 0x54 | |
65 | #define GET_KEY_SETTINGS 0x45 | |
66 | #define CHANGE_KEY 0xc4 | |
67 | #define GET_KEY_VERSION 0x64 | |
3d93d4f9 | 68 | #define AUTHENTICATION_FRAME 0xAF |
69 | ||
f6c18637 | 70 | #define MAX_NUM_KEYS 0x0F |
3d93d4f9 | 71 | #define MAX_APPLICATION_COUNT 28 |
f6c18637 | 72 | #define MAX_FILE_COUNT 32 |
3d93d4f9 | 73 | #define MAX_FRAME_SIZE 60 |
74 | #define NOT_YET_AUTHENTICATED 255 | |
75 | #define FRAME_PAYLOAD_SIZE (MAX_FRAME_SIZE - 5) |