]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/mifareutil.c
   1 //----------------------------------------------------------------------------- 
   2 // Merlok, May 2011, 2012 
   3 // Many authors, whom made it possible 
   5 // This code is licensed to you under the terms of the GNU GPL, version 2 or, 
   6 // at your option, any later version. See the LICENSE.txt file for the text of 
   8 //----------------------------------------------------------------------------- 
   9 // Work with mifare cards. 
  10 //----------------------------------------------------------------------------- 
  12 #include "proxmark3.h" 
  17 #include "iso14443crc.h" 
  18 #include "iso14443a.h" 
  20 #include "mifareutil.h" 
  23 int MF_DBGLEVEL 
= MF_DBG_ALL
; 
  26 void mf_crypto1_decrypt(struct Crypto1State 
*pcs
, uint8_t *data
, int len
){ 
  31                 for (i 
= 0; i 
< len
; i
++) 
  32                         data
[i
] = crypto1_byte(pcs
, 0x00, 0) ^ data
[i
]; 
  35                 for (i 
= 0; i 
< 4; i
++) 
  36                         bt 
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(data
[0], i
)) << i
; 
  43 void mf_crypto1_encrypt(struct Crypto1State 
*pcs
, uint8_t *data
, uint16_t len
, uint8_t *par
) { 
  48         for (i 
= 0; i 
< len
; i
++) { 
  50                 data
[i
] = crypto1_byte(pcs
, 0x00, 0) ^ data
[i
]; 
  53                 par
[i
>>3] |= (((filter(pcs
->odd
) ^ oddparity(bt
)) & 0x01)<<(7-(i
&0x0007))); 
  58 uint8_t mf_crypto1_encrypt4bit(struct Crypto1State 
*pcs
, uint8_t data
) { 
  62         for (i 
= 0; i 
< 4; i
++) 
  63                 bt 
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(data
, i
)) << i
; 
  69 int mifare_sendcmd_short(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t data
, uint8_t* answer
, uint8_t *answer_parity
, uint32_t *timing
) 
  71         return mifare_sendcmd_shortex(pcs
, crypted
, cmd
, data
, answer
, answer_parity
, timing
); 
  74 int mifare_sendcmd_short_special(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t* data
, uint8_t* answer
, uint8_t *answer_parity
, uint32_t *timing
) 
  83         AppendCrc14443a(dcmd
, 6); 
  84         ReaderTransmit(dcmd
, sizeof(dcmd
), NULL
); 
  85         int len 
= ReaderReceive(answer
, answer_parity
); 
  87                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Authentication failed. Card timeout."); 
  93 int mifare_sendcmd_short_mfucauth(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t *data
, uint8_t *answer
, uint8_t *answer_parity
, uint32_t *timing
) 
  98     memcpy(dcmd
+1,data
,16); 
  99         AppendCrc14443a(dcmd
, 17); 
 101         ReaderTransmit(dcmd
, sizeof(dcmd
), timing
); 
 102         len 
= ReaderReceive(answer
, answer_parity
); 
 104         if (MF_DBGLEVEL 
>= MF_DBG_ERROR
)   Dbprintf("Authentication failed. Card timeout."); 
 105         len 
= ReaderReceive(answer
,answer_parity
); 
 108                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
)   Dbprintf("NAK - Authentication failed."); 
 114 int mifare_sendcmd_short_mfuev1auth(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t *data
, uint8_t *answer
, uint8_t *answer_parity
, uint32_t *timing
) 
 119     memcpy(dcmd
+1,data
,4); 
 120         AppendCrc14443a(dcmd
, 5); 
 122         ReaderTransmit(dcmd
, sizeof(dcmd
), timing
); 
 123         len 
= ReaderReceive(answer
, answer_parity
); 
 125         if (MF_DBGLEVEL 
>= MF_DBG_ERROR
)   Dbprintf("Authentication failed. Card timeout."); 
 126         len 
= ReaderReceive(answer
,answer_parity
); 
 129                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
)   Dbprintf("NAK - Authentication failed."); 
 135 int mifare_sendcmd_shortex(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t data
, uint8_t *answer
, uint8_t *answer_parity
, uint32_t *timing
) 
 137         uint8_t dcmd
[4], ecmd
[4]; 
 139         uint8_t par
[1];                 // 1 Byte parity is enough here 
 142         AppendCrc14443a(dcmd
, 2); 
 144         memcpy(ecmd
, dcmd
, sizeof(dcmd
)); 
 148                 for (pos 
= 0; pos 
< 4; pos
++) 
 150                         ecmd
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ dcmd
[pos
]; 
 151                         par
[0] |= (((filter(pcs
->odd
) ^ oddparity(dcmd
[pos
])) & 0x01) << (7-pos
)); 
 154                 ReaderTransmitPar(ecmd
, sizeof(ecmd
), par
, timing
); 
 157                 ReaderTransmit(dcmd
, sizeof(dcmd
), timing
); 
 160         int len 
= ReaderReceive(answer
, par
); 
 162         if (answer_parity
) *answer_parity 
= par
[0]; 
 164         if (crypted 
== CRYPT_ALL
) { 
 167                         for (pos 
= 0; pos 
< 4; pos
++) 
 168                                 res 
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(answer
[0], pos
)) << pos
; 
 173                         for (pos 
= 0; pos 
< len
; pos
++) 
 175                                 answer
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ answer
[pos
]; 
 183 // mifare classic commands 
 184 int mifare_classic_auth(struct Crypto1State 
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint8_t isNested
)  
 186         return mifare_classic_authex(pcs
, uid
, blockNo
, keyType
, ui64Key
, isNested
, NULL
, NULL
); 
 189 int mifare_classic_authex(struct Crypto1State 
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint8_t isNested
, uint32_t *ntptr
, uint32_t *timing
)  
 195         uint8_t par
[1] = {0x00}; 
 197         uint32_t nt
, ntpp
; // Supplied tag nonce 
 199         uint8_t mf_nr_ar
[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }; 
 200         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 201         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 203         // Transmit MIFARE_CLASSIC_AUTH 
 204         len 
= mifare_sendcmd_short(pcs
, isNested
, 0x60 + (keyType 
& 0x01), blockNo
, receivedAnswer
, receivedAnswerPar
, timing
); 
 205         if (MF_DBGLEVEL 
>= 4)   Dbprintf("rand tag nonce len: %x", len
);   
 206         if (len 
!= 4) return 1; 
 208         // "random" reader nonce: 
 214         // Save the tag nonce (nt) 
 215         nt 
= bytes_to_num(receivedAnswer
, 4); 
 217         //  ----------------------------- crypto1 create 
 219                 crypto1_destroy(pcs
); 
 221         // Init cipher with key 
 222         crypto1_create(pcs
, ui64Key
); 
 224         if (isNested 
== AUTH_NESTED
) { 
 225                 // decrypt nt with help of new key  
 226                 nt 
= crypto1_word(pcs
, nt 
^ uid
, 1) ^ nt
; 
 228                 // Load (plain) uid^nt into the cipher 
 229                 crypto1_word(pcs
, nt 
^ uid
, 0); 
 233         if (!ntptr 
&& (MF_DBGLEVEL 
>= 3)) 
 234                 Dbprintf("auth uid: %08x nt: %08x", uid
, nt
);   
 240         // Generate (encrypted) nr+parity by loading it into the cipher (Nr) 
 242         for (pos 
= 0; pos 
< 4; pos
++) 
 244                 mf_nr_ar
[pos
] = crypto1_byte(pcs
, nr
[pos
], 0) ^ nr
[pos
]; 
 245                 par
[0] |= (((filter(pcs
->odd
) ^ oddparity(nr
[pos
])) & 0x01) << (7-pos
)); 
 248         // Skip 32 bits in pseudo random generator 
 249         nt 
= prng_successor(nt
,32); 
 252         for (pos 
= 4; pos 
< 8; pos
++) 
 254                 nt 
= prng_successor(nt
,8); 
 255                 mf_nr_ar
[pos
] = crypto1_byte(pcs
,0x00,0) ^ (nt 
& 0xff); 
 256                 par
[0] |= (((filter(pcs
->odd
) ^ oddparity(nt 
& 0xff)) & 0x01) << (7-pos
)); 
 259         // Transmit reader nonce and reader answer 
 260         ReaderTransmitPar(mf_nr_ar
, sizeof(mf_nr_ar
), par
, NULL
); 
 262         // Receive 4 byte tag answer 
 263         len 
= ReaderReceive(receivedAnswer
, receivedAnswerPar
); 
 266                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Authentication failed. Card timeout."); 
 270         memcpy(tmp4
, receivedAnswer
, 4); 
 271         ntpp 
= prng_successor(nt
, 32) ^ crypto1_word(pcs
, 0,0); 
 273         if (ntpp 
!= bytes_to_num(tmp4
, 4)) { 
 274                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Authentication failed. Error card response."); 
 281 int mifare_classic_readblock(struct Crypto1State 
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)  
 287         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 288         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 290         // command MIFARE_CLASSIC_READBLOCK 
 291         len 
= mifare_sendcmd_short(pcs
, 1, 0x30, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
); 
 293                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);   
 297                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Cmd Error: card timeout. len: %x", len
);   
 301         memcpy(bt
, receivedAnswer 
+ 16, 2); 
 302         AppendCrc14443a(receivedAnswer
, 16); 
 303         if (bt
[0] != receivedAnswer
[16] || bt
[1] != receivedAnswer
[17]) { 
 304                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Cmd CRC response error.");   
 308         memcpy(blockData
, receivedAnswer
, 16); 
 312 // mifare ultralight commands 
 313 int mifare_ul_ev1_auth(uint8_t *keybytes
, uint8_t *pack
){ 
 318         uint8_t key
[4] = {0x00}; 
 319         memcpy(key
, keybytes
, 4); 
 321         Dbprintf("EV1 Auth : %02x%02x%02x%02x", key
[0], key
[1], key
[2], key
[3]); 
 322         len 
= mifare_sendcmd_short_mfuev1auth(NULL
, 0, 0x1B, key
, resp
, respPar
, NULL
); 
 324                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("Cmd Error: %02x %u", resp
[0], len
); 
 328         if (MF_DBGLEVEL 
>= MF_DBG_EXTENDED
) 
 329                 Dbprintf("Auth Resp: %02x%02x%02x%02x", resp
[0],resp
[1],resp
[2],resp
[3]); 
 331         memcpy(pack
, resp
, 4); 
 335 int mifare_ultra_auth(uint8_t *keybytes
){ 
 339         uint8_t random_a
[8] = {1,1,1,1,1,1,1,1}; 
 340         uint8_t random_b
[8] = {0x00}; 
 341         uint8_t enc_random_b
[8] = {0x00}; 
 342         uint8_t rnd_ab
[16] = {0x00}; 
 343         uint8_t IV
[8] = {0x00}; 
 344         uint8_t key
[16] = {0x00}; 
 345         memcpy(key
, keybytes
, 16); 
 348         uint8_t resp
[19] = {0x00}; 
 349         uint8_t respPar
[3] = {0,0,0}; 
 351         // REQUEST AUTHENTICATION 
 352         len 
= mifare_sendcmd_short(NULL
, 1, 0x1A, 0x00, resp
, respPar 
,NULL
); 
 354                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("Cmd Error: %02x", resp
[0]); 
 359         memcpy(enc_random_b
,resp
+1,8); 
 362         tdes_2key_dec(random_b
, enc_random_b
, sizeof(random_b
), key
, IV 
); 
 364         memcpy(rnd_ab  
,random_a
,8); 
 365         memcpy(rnd_ab
+8,random_b
,8); 
 367         if (MF_DBGLEVEL 
>= MF_DBG_EXTENDED
) { 
 368                 Dbprintf("enc_B: %02x %02x %02x %02x %02x %02x %02x %02x", 
 369                         enc_random_b
[0],enc_random_b
[1],enc_random_b
[2],enc_random_b
[3],enc_random_b
[4],enc_random_b
[5],enc_random_b
[6],enc_random_b
[7]); 
 371                 Dbprintf("    B: %02x %02x %02x %02x %02x %02x %02x %02x", 
 372                         random_b
[0],random_b
[1],random_b
[2],random_b
[3],random_b
[4],random_b
[5],random_b
[6],random_b
[7]); 
 374                 Dbprintf("rnd_ab: %02x %02x %02x %02x %02x %02x %02x %02x", 
 375                                 rnd_ab
[0],rnd_ab
[1],rnd_ab
[2],rnd_ab
[3],rnd_ab
[4],rnd_ab
[5],rnd_ab
[6],rnd_ab
[7]); 
 377                 Dbprintf("rnd_ab: %02x %02x %02x %02x %02x %02x %02x %02x", 
 378                                 rnd_ab
[8],rnd_ab
[9],rnd_ab
[10],rnd_ab
[11],rnd_ab
[12],rnd_ab
[13],rnd_ab
[14],rnd_ab
[15] ); 
 381         // encrypt    out, in, length, key, iv 
 382         tdes_2key_enc(rnd_ab
, rnd_ab
, sizeof(rnd_ab
), key
, enc_random_b
); 
 384         len 
= mifare_sendcmd_short_mfucauth(NULL
, 1, 0xAF, rnd_ab
, resp
, respPar
, NULL
); 
 386                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("Cmd Error: %02x", resp
[0]); 
 390         uint8_t enc_resp
[8] = { 0,0,0,0,0,0,0,0 }; 
 391         uint8_t resp_random_a
[8] = { 0,0,0,0,0,0,0,0 }; 
 392         memcpy(enc_resp
, resp
+1, 8); 
 394         // decrypt    out, in, length, key, iv  
 395         tdes_2key_dec(resp_random_a
, enc_resp
, 8, key
, enc_random_b
); 
 396         if ( memcmp(resp_random_a
, random_a
, 8) != 0 ) { 
 397                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("failed authentication"); 
 401         if (MF_DBGLEVEL 
>= MF_DBG_EXTENDED
) { 
 402                 Dbprintf("e_AB: %02x %02x %02x %02x %02x %02x %02x %02x",  
 403                                 rnd_ab
[0],rnd_ab
[1],rnd_ab
[2],rnd_ab
[3], 
 404                                 rnd_ab
[4],rnd_ab
[5],rnd_ab
[6],rnd_ab
[7]); 
 406                 Dbprintf("e_AB: %02x %02x %02x %02x %02x %02x %02x %02x", 
 407                                 rnd_ab
[8],rnd_ab
[9],rnd_ab
[10],rnd_ab
[11], 
 408                                 rnd_ab
[12],rnd_ab
[13],rnd_ab
[14],rnd_ab
[15]); 
 410                 Dbprintf("a: %02x %02x %02x %02x %02x %02x %02x %02x", 
 411                                 random_a
[0],random_a
[1],random_a
[2],random_a
[3], 
 412                                 random_a
[4],random_a
[5],random_a
[6],random_a
[7]); 
 414                 Dbprintf("b: %02x %02x %02x %02x %02x %02x %02x %02x", 
 415                                 resp_random_a
[0],resp_random_a
[1],resp_random_a
[2],resp_random_a
[3], 
 416                                 resp_random_a
[4],resp_random_a
[5],resp_random_a
[6],resp_random_a
[7]); 
 421 int mifare_ultra_readblock(uint8_t blockNo
, uint8_t *blockData
) 
 425         uint8_t receivedAnswer
[MAX_FRAME_SIZE
]; 
 426         uint8_t receivedAnswerPar
[MAX_PARITY_SIZE
]; 
 428         len 
= mifare_sendcmd_short(NULL
, 1, 0x30, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
); 
 430                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("Cmd Error: %02x", receivedAnswer
[0]); 
 434                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("Cmd Error: card timeout. len: %x", len
); 
 438         memcpy(bt
, receivedAnswer 
+ 16, 2); 
 439         AppendCrc14443a(receivedAnswer
, 16); 
 440         if (bt
[0] != receivedAnswer
[16] || bt
[1] != receivedAnswer
[17]) { 
 441                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) Dbprintf("Cmd CRC response error."); 
 445         memcpy(blockData
, receivedAnswer
, 14); 
 449 int mifare_classic_writeblock(struct Crypto1State 
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
)  
 454         uint8_t par
[3] = {0};           // enough for 18 Bytes to send 
 457         uint8_t d_block
[18], d_block_enc
[18]; 
 458         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 459         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 461         // command MIFARE_CLASSIC_WRITEBLOCK 
 462         len 
= mifare_sendcmd_short(pcs
, 1, 0xA0, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
); 
 464         if ((len 
!= 1) || (receivedAnswer
[0] != 0x0A)) {   //  0x0a - ACK 
 465                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Cmd Error: %02x", receivedAnswer
[0]);   
 469         memcpy(d_block
, blockData
, 16); 
 470         AppendCrc14443a(d_block
, 16); 
 473         for (pos 
= 0; pos 
< 18; pos
++) 
 475                 d_block_enc
[pos
] = crypto1_byte(pcs
, 0x00, 0) ^ d_block
[pos
]; 
 476                 par
[pos
>>3] |= (((filter(pcs
->odd
) ^ oddparity(d_block
[pos
])) & 0x01) << (7 - (pos
&0x0007))); 
 479         ReaderTransmitPar(d_block_enc
, sizeof(d_block_enc
), par
, NULL
); 
 481         // Receive the response 
 482         len 
= ReaderReceive(receivedAnswer
, receivedAnswerPar
);  
 485         for (i 
= 0; i 
< 4; i
++) 
 486                 res 
|= (crypto1_bit(pcs
, 0, 0) ^ BIT(receivedAnswer
[0], i
)) << i
; 
 488         if ((len 
!= 1) || (res 
!= 0x0A)) { 
 489                 if (MF_DBGLEVEL 
>= 1)   Dbprintf("Cmd send data2 Error: %02x", res
);   
 496 int mifare_ultra_writeblock(uint8_t blockNo
, uint8_t *blockData
)  
 499         uint8_t par
[3] = {0};  // enough for 18 parity bits 
 500         uint8_t d_block
[18] = {0x00}; 
 501         uint8_t receivedAnswer
[MAX_FRAME_SIZE
]; 
 502         uint8_t receivedAnswerPar
[MAX_PARITY_SIZE
]; 
 504         // command MIFARE_CLASSIC_WRITEBLOCK 
 505         len 
= mifare_sendcmd_short(NULL
, true, 0xA0, blockNo
, receivedAnswer
, receivedAnswerPar
, NULL
); 
 507         if ((len 
!= 1) || (receivedAnswer
[0] != 0x0A)) {   //  0x0a - ACK 
 508                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 509                         Dbprintf("Cmd Addr Error: %02x", receivedAnswer
[0]); 
 513         memcpy(d_block
, blockData
, 16); 
 514         AppendCrc14443a(d_block
, 16); 
 516         ReaderTransmitPar(d_block
, sizeof(d_block
), par
, NULL
); 
 518         len 
= ReaderReceive(receivedAnswer
, receivedAnswerPar
); 
 520         if ((len 
!= 1) || (receivedAnswer
[0] != 0x0A)) {   //  0x0a - ACK 
 521                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 522                         Dbprintf("Cmd Data Error: %02x %d", receivedAnswer
[0],len
); 
 528 int mifare_ultra_special_writeblock(uint8_t blockNo
, uint8_t *blockData
) 
 531         uint8_t d_block
[8] = {0x00}; 
 532         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 533         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 535         // command MIFARE_CLASSIC_WRITEBLOCK 
 537         memcpy(d_block
+1,blockData
,4); 
 538         AppendCrc14443a(d_block
, 6); 
 540         len 
= mifare_sendcmd_short_special(NULL
, 1, 0xA2, d_block
, receivedAnswer
, receivedAnswerPar
, NULL
); 
 542         if (receivedAnswer
[0] != 0x0A) {   //  0x0a - ACK 
 543                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 544                         Dbprintf("Cmd Send Error: %02x %d", receivedAnswer
[0],len
); 
 550 int mifare_classic_halt(struct Crypto1State 
*pcs
, uint32_t uid
)  
 553         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 554         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 556         len 
= mifare_sendcmd_short(pcs
, pcs 
== NULL 
? false:true, 0x50, 0x00, receivedAnswer
, receivedAnswerPar
, NULL
); 
 558                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 559                         Dbprintf("halt error. response len: %x", len
);   
 566 int mifare_ultra_halt() 
 569         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 570         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 572         len 
= mifare_sendcmd_short(NULL
, true, 0x50, 0x00, receivedAnswer
, receivedAnswerPar
, NULL
); 
 574                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 575                         Dbprintf("halt error. response len: %x", len
); 
 582 // Mifare Memory Structure: up to 32 Sectors with 4 blocks each (1k and 2k cards), 
 583 // plus evtl. 8 sectors with 16 blocks each (4k cards) 
 584 uint8_t NumBlocksPerSector(uint8_t sectorNo
)  
 592 uint8_t FirstBlockOfSector(uint8_t sectorNo
)  
 597                 return 32*4 + (sectorNo 
- 32) * 16; 
 602 // work with emulator memory 
 603 void emlSetMem(uint8_t *data
, int blockNum
, int blocksCount
) { 
 604         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 605         memcpy(emCARD 
+ blockNum 
* 16, data
, blocksCount 
* 16); 
 608 void emlGetMem(uint8_t *data
, int blockNum
, int blocksCount
) { 
 609         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 610         memcpy(data
, emCARD 
+ blockNum 
* 16, blocksCount 
* 16); 
 613 void emlGetMemBt(uint8_t *data
, int bytePtr
, int byteCount
) { 
 614         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 615         memcpy(data
, emCARD 
+ bytePtr
, byteCount
); 
 618 int emlCheckValBl(int blockNum
) { 
 619         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 620         uint8_t* data 
= emCARD 
+ blockNum 
* 16; 
 622         if ((data
[0] != (data
[4] ^ 0xff)) || (data
[0] != data
[8]) || 
 623                         (data
[1] != (data
[5] ^ 0xff)) || (data
[1] != data
[9]) || 
 624                         (data
[2] != (data
[6] ^ 0xff)) || (data
[2] != data
[10]) || 
 625                         (data
[3] != (data
[7] ^ 0xff)) || (data
[3] != data
[11]) || 
 626                         (data
[12] != (data
[13] ^ 0xff)) || (data
[12] != data
[14]) || 
 627                         (data
[12] != (data
[15] ^ 0xff)) 
 633 int emlGetValBl(uint32_t *blReg
, uint8_t *blBlock
, int blockNum
) { 
 634         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 635         uint8_t* data 
= emCARD 
+ blockNum 
* 16; 
 637         if (emlCheckValBl(blockNum
)) { 
 641         memcpy(blReg
, data
, 4); 
 646 int emlSetValBl(uint32_t blReg
, uint8_t blBlock
, int blockNum
) { 
 647         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 648         uint8_t* data 
= emCARD 
+ blockNum 
* 16; 
 650         memcpy(data 
+ 0, &blReg
, 4); 
 651         memcpy(data 
+ 8, &blReg
, 4); 
 652         blReg 
= blReg 
^ 0xffffffff; 
 653         memcpy(data 
+ 4, &blReg
, 4); 
 656         data
[13] = blBlock 
^ 0xff; 
 658         data
[15] = blBlock 
^ 0xff; 
 663 uint64_t emlGetKey(int sectorNum
, int keyType
) { 
 665         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 667         memcpy(key
, emCARD 
+ 16 * (FirstBlockOfSector(sectorNum
) + NumBlocksPerSector(sectorNum
) - 1) + keyType 
* 10, 6); 
 668         return bytes_to_num(key
, 6); 
 671 void emlClearMem(void) { 
 674         const uint8_t trailer
[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x80, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; 
 675         const uint8_t uid
[]   =   {0xe6, 0x84, 0x87, 0xf3, 0x16, 0x88, 0x04, 0x00, 0x46, 0x8e, 0x45, 0x55, 0x4d, 0x70, 0x41, 0x04}; 
 676         uint8_t* emCARD 
= BigBuf_get_EM_addr(); 
 678         memset(emCARD
, 0, CARD_MEMORY_SIZE
); 
 680         // fill sectors trailer data 
 681         for(b 
= 3; b 
< 256; b
<127?(b
+=4):(b
+=16)) { 
 682                 emlSetMem((uint8_t *)trailer
, b 
, 1); 
 686         emlSetMem((uint8_t *)uid
, 0, 1); 
 691 // Mifare desfire commands 
 692 int mifare_sendcmd_special(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t* data
, uint8_t* answer
, uint8_t *answer_parity
, uint32_t *timing
) 
 694     uint8_t dcmd
[5] = {0x00}; 
 696     memcpy(dcmd
+1,data
,2); 
 697         AppendCrc14443a(dcmd
, 3); 
 699         ReaderTransmit(dcmd
, sizeof(dcmd
), NULL
); 
 700         int len 
= ReaderReceive(answer
, answer_parity
); 
 702                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
)  
 703                         Dbprintf("Authentication failed. Card timeout."); 
 709 int mifare_sendcmd_special2(struct Crypto1State 
*pcs
, uint8_t crypted
, uint8_t cmd
, uint8_t* data
, uint8_t* answer
,uint8_t *answer_parity
, uint32_t *timing
) 
 711     uint8_t dcmd
[20] = {0x00}; 
 713     memcpy(dcmd
+1,data
,17); 
 714         AppendCrc14443a(dcmd
, 18); 
 716         ReaderTransmit(dcmd
, sizeof(dcmd
), NULL
); 
 717         int len 
= ReaderReceive(answer
, answer_parity
); 
 719         if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 720                         Dbprintf("Authentication failed. Card timeout."); 
 726 int mifare_desfire_des_auth1(uint32_t uid
, uint8_t *blockData
){ 
 729         // load key, keynumber 
 730         uint8_t data
[2]={0x0a, 0x00}; 
 731         uint8_t receivedAnswer
[MAX_FRAME_SIZE
]; 
 732         uint8_t receivedAnswerPar
[MAX_PARITY_SIZE
]; 
 734         len 
= mifare_sendcmd_special(NULL
, 1, 0x02, data
, receivedAnswer
,receivedAnswerPar
,NULL
); 
 736                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 737                         Dbprintf("Cmd Error: %02x", receivedAnswer
[0]); 
 742                 if (MF_DBGLEVEL 
>= MF_DBG_EXTENDED
)     { 
 743                         Dbprintf("Auth1 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", 
 744                                 receivedAnswer
[0],receivedAnswer
[1],receivedAnswer
[2],receivedAnswer
[3],receivedAnswer
[4], 
 745                                 receivedAnswer
[5],receivedAnswer
[6],receivedAnswer
[7],receivedAnswer
[8],receivedAnswer
[9], 
 746                                 receivedAnswer
[10],receivedAnswer
[11]); 
 748                         memcpy(blockData
, receivedAnswer
, 12); 
 754 int mifare_desfire_des_auth2(uint32_t uid
, uint8_t *key
, uint8_t *blockData
){ 
 757         uint8_t data
[17] = {0x00}; 
 759         memcpy(data
+1,key
,16); 
 761         uint8_t receivedAnswer
[MAX_MIFARE_FRAME_SIZE
]; 
 762         uint8_t receivedAnswerPar
[MAX_MIFARE_PARITY_SIZE
]; 
 764         len 
= mifare_sendcmd_special2(NULL
, 1, 0x03, data
, receivedAnswer
, receivedAnswerPar 
,NULL
); 
 766         if ((receivedAnswer
[0] == 0x03) && (receivedAnswer
[1] == 0xae)) { 
 767                 if (MF_DBGLEVEL 
>= MF_DBG_ERROR
) 
 768                         Dbprintf("Auth Error: %02x %02x", receivedAnswer
[0], receivedAnswer
[1]); 
 773                 if (MF_DBGLEVEL 
>= MF_DBG_EXTENDED
) { 
 774                         Dbprintf("Auth2 Resp: %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", 
 775                                 receivedAnswer
[0],receivedAnswer
[1],receivedAnswer
[2],receivedAnswer
[3],receivedAnswer
[4], 
 776                                 receivedAnswer
[5],receivedAnswer
[6],receivedAnswer
[7],receivedAnswer
[8],receivedAnswer
[9], 
 777                                 receivedAnswer
[10],receivedAnswer
[11]); 
 779                 memcpy(blockData
, receivedAnswer
, 12);