1 //-----------------------------------------------------------------------------
2 // Borrowed initially from https://github.com/nfc-tools/libfreefare
3 // Copyright (C) 2010, Romain Tartiere.
4 // Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
6 // This program is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // See LICENSE.txt for the text of the license.
17 //-----------------------------------------------------------------------------
19 #ifndef __DESFIRE_CRYPTO_H
20 #define __DESFIRE_CRYPTO_H
25 #include "mbedtls/aes.h"
26 #include "mbedtls/des.h"
28 /* Mifare DESFire EV1 Application crypto operations */
29 //#define APPLICATION_CRYPTO_DES 0x00
30 //#define APPLICATION_CRYPTO_3K3DES 0x40
31 //#define APPLICATION_CRYPTO_AES 0x80
36 } MifareCryptoDirection
;
41 } MifareCryptoOperation
;
43 #define MDCM_MASK 0x000F
47 // Data send to the PICC is used to update the CMAC
48 #define CMAC_COMMAND 0x010
49 // Data received from the PICC is used to update the CMAC
50 #define CMAC_VERIFY 0x020
52 // MAC the command (when MDCM_MACED)
53 #define MAC_COMMAND 0x100
54 // The command returns a MAC to verify (when MDCM_MACED)
55 #define MAC_VERIFY 0x200
57 #define ENC_COMMAND 0x1000
60 #define MAC_MASK 0x0F0
61 #define CMAC_MACK 0xF00
63 /* Communication mode */
64 #define MDCM_PLAIN 0x00
65 #define MDCM_MACED 0x01
66 #define MDCM_ENCIPHERED 0x03
68 /* Error code managed by the library */
69 #define CRYPTO_ERROR 0x01
78 MDFT_STANDARD_DATA_FILE = 0x00,
79 MDFT_BACKUP_DATA_FILE = 0x01,
80 MDFT_VALUE_FILE_WITH_BACKUP = 0x02,
81 MDFT_LINEAR_RECORD_FILE_WITH_BACKUP = 0x03,
82 MDFT_CYCLIC_RECORD_FILE_WITH_BACKUP = 0x04
88 OUT_OF_EEPROM_ERROR = 0x0e,
89 ILLEGAL_COMMAND_CODE = 0x1c,
90 INTEGRITY_ERROR = 0x1e,
93 PERMISSION_DENIED = 0x9d,
94 PARAMETER_ERROR = 0x9e,
95 APPLICATION_NOT_FOUND = 0xa0,
96 APPL_INTEGRITY_ERROR = 0xa1,
97 AUTHENTICATION_ERROR = 0xae,
98 ADDITIONAL_FRAME = 0xaf,
99 BOUNDARY_ERROR = 0xbe,
100 PICC_INTEGRITY_ERROR = 0xc1,
101 COMMAND_ABORTED = 0xca,
102 PICC_DISABLED_ERROR = 0xcd,
104 DUPLICATE_ERROR = 0xde,
106 FILE_NOT_FOUND = 0xf0,
107 FILE_INTEGRITY_ERROR = 0xf1
111 CREATE_APPLICATION = 0xca,
112 DELETE_APPLICATION = 0xda,
113 GET_APPLICATION_IDS = 0x6a,
114 SELECT_APPLICATION = 0x5a,
122 LIMITED_CREDIT = 0x1c,
125 CLEAR_RECORD_FILE = 0xeb,
126 COMMIT_TRANSACTION = 0xc7,
127 ABORT_TRANSACTION = 0xa7,
128 GET_FREE_MEMORY = 0x6e,
130 GET_FILE_SETTINGS = 0xf5,
132 CHANGE_FILE_SETTINGS = 0x5f,
133 CREATE_STD_DATA_FILE = 0xcd,
134 CREATE_BACKUP_DATA_FILE = 0xcb,
135 CREATE_VALUE_FILE = 0xcc,
136 CREATE_LINEAR_RECORD_FILE = 0xc1,
137 CREATE_CYCLIC_RECORD_FILE = 0xc0,
139 AUTHENTICATE = 0x0a, // AUTHENTICATE_NATIVE
140 AUTHENTICATE_ISO = 0x1a, // AUTHENTICATE_STANDARD
141 AUTHENTICATE_AES = 0xaa,
142 CHANGE_KEY_SETTINGS = 0x54,
143 GET_KEY_SETTINGS = 0x45,
145 GET_KEY_VERSION = 0x64,
146 AUTHENTICATION_FRAME = 0xAF
150 #define DESFIRE_KEY(key) ((struct desfire_key *) key)
152 DesfireCryptoAlgorithm type
;
154 uint8_t cmac_sk1
[24];
155 uint8_t cmac_sk2
[24];
158 typedef struct desfire_key
*desfirekey_t
;
160 #define DESFIRE(tag) ((struct desfire_tag *) tag)
162 iso14a_card_select_t info
;
164 uint8_t last_picc_error
;
165 uint8_t last_internal_error
;
166 uint8_t last_pcd_error
;
167 desfirekey_t session_key
;
168 DesfireAuthScheme authentication_scheme
;
169 uint8_t authenticated_key_no
;
171 uint8_t ivect
[DESFIRE_MAX_CRYPTO_BLOCK_SIZE
];
173 uint8_t *crypto_buffer
;
174 size_t crypto_buffer_size
;
175 uint32_t selected_application
;
177 typedef struct desfire_tag
*desfiretag_t
;
178 void des_encrypt(void *out
, const void *in
, const void *key
);
179 void des_decrypt(void *out
, const void *in
, const void *key
);
180 void tdes_nxp_receive(const void *in
, void *out
, size_t length
, const void *key
, uint8_t *iv
, int keymode
);
181 void tdes_nxp_send(const void *in
, void *out
, size_t length
, const void *key
, uint8_t *iv
, int keymode
);
183 void aes128_nxp_receive(const void *in
, void *out
, size_t length
, const void *key
, unsigned char iv
[16]);
184 void aes128_nxp_send(const void *in
, void *out
, size_t length
, const void *key
, unsigned char iv
[16]);
186 void Desfire_des_key_new(const uint8_t value
[8], desfirekey_t key
);
187 void Desfire_3des_key_new(const uint8_t value
[16], desfirekey_t key
);
188 void Desfire_des_key_new_with_version(const uint8_t value
[8], desfirekey_t key
);
189 void Desfire_3des_key_new_with_version(const uint8_t value
[16], desfirekey_t key
);
190 void Desfire_3k3des_key_new(const uint8_t value
[24], desfirekey_t key
);
191 void Desfire_3k3des_key_new_with_version(const uint8_t value
[24], desfirekey_t key
);
192 void Desfire_2k3des_key_new_with_version(const uint8_t value
[16], desfirekey_t key
);
193 void Desfire_aes_key_new(const uint8_t value
[16], desfirekey_t key
);
194 void Desfire_aes_key_new_with_version(const uint8_t value
[16], uint8_t version
, desfirekey_t key
);
195 uint8_t Desfire_key_get_version(desfirekey_t key
);
196 void Desfire_key_set_version(desfirekey_t key
, uint8_t version
);
197 void Desfire_session_key_new(const uint8_t rnda
[], const uint8_t rndb
[], desfirekey_t authkey
, desfirekey_t key
);
199 void *mifare_cryto_preprocess_data(desfiretag_t tag
, void *data
, size_t *nbytes
, size_t offset
, int communication_settings
);
200 void *mifare_cryto_postprocess_data(desfiretag_t tag
, void *data
, size_t *nbytes
, int communication_settings
);
201 void mifare_cypher_single_block(desfirekey_t key
, uint8_t *data
, uint8_t *ivect
, MifareCryptoDirection direction
, MifareCryptoOperation operation
, size_t block_size
);
202 void mifare_cypher_blocks_chained(desfiretag_t tag
, desfirekey_t key
, uint8_t *ivect
, uint8_t *data
, size_t data_size
, MifareCryptoDirection direction
, MifareCryptoOperation operation
);
203 size_t key_block_size(const desfirekey_t key
);
204 size_t padded_data_length(const size_t nbytes
, const size_t block_size
);
205 size_t maced_data_length(const desfirekey_t key
, const size_t nbytes
);
206 size_t enciphered_data_length(const desfiretag_t tag
, const size_t nbytes
, int communication_settings
);
207 void cmac_generate_subkeys(desfirekey_t key
);
208 void cmac(const desfirekey_t key
, uint8_t *ivect
, const uint8_t *data
, size_t len
, uint8_t *cmac
);