]> git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhfmfdes.h
8ecf36d37569d73a9d5baad4164f91428adbab47
[proxmark3-svn] / client / cmdhfmfdes.h
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);
17 int CmdHF14ADesNonces(const char *Cmd);
18 char * GetCardSizeStr( uint8_t fsize );
19 char * GetVendorStr( uint8_t id);
20 char * GetProtocolStr(uint8_t id);
21
22 // Command options for Desfire behavior.
23 enum {
24 NONE = 0x00,
25 INIT = 0x01,
26 DISCONNECT = 0x02,
27 FOO = 0x04,
28 BAR = 0x08,
29 } CmdOptions ;
30
31
32 #define CREATE_APPLICATION 0xca
33 #define DELETE_APPLICATION 0xda
34 #define GET_APPLICATION_IDS 0x6a
35 #define SELECT_APPLICATION 0x5a
36 #define FORMAT_PICC 0xfc
37 #define GET_VERSION 0x60
38 #define READ_DATA 0xbd
39 #define WRITE_DATA 0x3d
40 #define GET_VALUE 0x6c
41 #define CREDIT 0x0c
42 #define DEBIT 0xdc
43 #define LIMITED_CREDIT 0x1c
44 #define WRITE_RECORD 0x3b
45 #define READ_RECORDS 0xbb
46 #define CLEAR_RECORD_FILE 0xeb
47 #define COMMIT_TRANSACTION 0xc7
48 #define ABORT_TRANSACTION 0xa7
49 #define GET_FREE_MEMORY 0x6e
50 #define GET_FILE_IDS 0x6f
51 #define GET_FILE_SETTINGS 0xf5
52 #define CHANGE_FILE_SETTINGS 0x5f
53 #define CREATE_STD_DATA_FILE 0xcd
54 #define CREATE_BACKUP_DATA_FILE 0xcb
55 #define CREATE_VALUE_FILE 0xcc
56 #define CREATE_LINEAR_RECORD_FILE 0xc1
57 #define CREATE_CYCLIC_RECORD_FILE 0xc0
58 #define DELETE_FILE 0xdf
59 #define AUTHENTICATE 0x0a // AUTHENTICATE_NATIVE
60 #define AUTHENTICATE_ISO 0x1a // AUTHENTICATE_STANDARD
61 #define AUTHENTICATE_AES 0xaa
62 #define CHANGE_KEY_SETTINGS 0x54
63 #define GET_KEY_SETTINGS 0x45
64 #define CHANGE_KEY 0xc4
65 #define GET_KEY_VERSION 0x64
66 #define AUTHENTICATION_FRAME 0xAF
67
68
69 #define MAX_APPLICATION_COUNT 28
70 #define MAX_FILE_COUNT 16
71 #define MAX_FRAME_SIZE 60
72 #define NOT_YET_AUTHENTICATED 255
73 #define FRAME_PAYLOAD_SIZE (MAX_FRAME_SIZE - 5)
Impressum, Datenschutz