static int tracing = TRUE;
static uint32_t iso14a_timeout;
-// CARD TO READER
+// CARD TO READER - manchester
// Sequence D: 11110000 modulation with subcarrier during first half
// Sequence E: 00001111 modulation with subcarrier during second half
// Sequence F: 00000000 no modulation with subcarrier
-// READER TO CARD
+// READER TO CARD - miller
// Sequence X: 00001100 drop after half a period
// Sequence Y: 00000000 no drop
// Sequence Z: 11000000 drop at start
1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1
};
-// BIG CHANGE - UNDERSTAND THIS BEFORE WE COMMIT
-#define RECV_CMD_OFFSET 3032
-#define RECV_RES_OFFSET 3096
-#define DMA_BUFFER_OFFSET 3160
-#define DMA_BUFFER_SIZE 4096
-#define TRACE_LENGTH 3000
-// card emulator memory
-#define CARD_MEMORY 7260
-#define CARD_MEMORY_LEN 1024
-
uint8_t trigger = 0;
void iso14a_set_trigger(int enable) {
trigger = enable;
//-----------------------------------------------------------------------------
// Prepare tag messages
//-----------------------------------------------------------------------------
-static void CodeIso14443aAsTag(const uint8_t *cmd, int len)
+static void CodeIso14443aAsTagPar(const uint8_t *cmd, int len, uint32_t dwParity)
{
- int i;
- int oddparity;
+ int i;
+// int oddparity;
- ToSendReset();
+ ToSendReset();
// Correction bit, might be removed when not needed
ToSendStuffBit(0);
ToSendStuffBit(0);
ToSendStuffBit(0);
ToSendStuffBit(0);
-
+
// Send startbit
ToSend[++ToSendMax] = SEC_D;
- for(i = 0; i < len; i++) {
- int j;
- uint8_t b = cmd[i];
+ for(i = 0; i < len; i++) {
+ int j;
+ uint8_t b = cmd[i];
// Data bits
- oddparity = 0x01;
+// oddparity = 0x01;
for(j = 0; j < 8; j++) {
- oddparity ^= (b & 1);
+// oddparity ^= (b & 1);
if(b & 1) {
ToSend[++ToSendMax] = SEC_D;
} else {
ToSend[++ToSendMax] = SEC_E;
- }
- b >>= 1;
- }
+ }
+ b >>= 1;
+ }
- // Parity bit
- if(oddparity) {
- ToSend[++ToSendMax] = SEC_D;
+ // Get the parity bit
+ if ((dwParity >> i) & 0x01) {
+ ToSend[++ToSendMax] = SEC_D;
} else {
ToSend[++ToSendMax] = SEC_E;
}
- }
+
+ // Parity bit
+// if(oddparity) {
+// ToSend[++ToSendMax] = SEC_D;
+// } else {
+// ToSend[++ToSendMax] = SEC_E;
+// }
+
+// if (oddparity != ((dwParity >> i) & 0x01))
+// Dbprintf("par error. i=%d", i);
+ }
- // Send stopbit
- ToSend[++ToSendMax] = SEC_F;
+ // Send stopbit
+ ToSend[++ToSendMax] = SEC_F;
// Flush the buffer in FPGA!!
for(i = 0; i < 5; i++) {
ToSend[++ToSendMax] = SEC_F;
}
- // Convert from last byte pos to length
- ToSendMax++;
+ // Convert from last byte pos to length
+ ToSendMax++;
// Add a few more for slop
- ToSend[ToSendMax++] = 0x00;
- ToSend[ToSendMax++] = 0x00;
- //ToSendMax += 2;
+// ToSend[ToSendMax++] = 0x00;
+// ToSend[ToSendMax++] = 0x00;
+}
+
+static void CodeIso14443aAsTag(const uint8_t *cmd, int len){
+ CodeIso14443aAsTagPar(cmd, len, GetParity(cmd, len));
}
//-----------------------------------------------------------------------------
// This is to send a NACK kind of answer, its only 3 bits, I know it should be 4
//-----------------------------------------------------------------------------
-static void CodeStrangeAnswer()
+static void CodeStrangeAnswerAsTag()
{
int i;
// Convert from last byte pos to length
ToSendMax++;
+}
- // Add a few more for slop
- ToSend[ToSendMax++] = 0x00;
- ToSend[ToSendMax++] = 0x00;
- //ToSendMax += 2;
+static void Code4bitAnswerAsTag(uint8_t cmd)
+{
+ int i;
+
+ ToSendReset();
+
+ // Correction bit, might be removed when not needed
+ ToSendStuffBit(0);
+ ToSendStuffBit(0);
+ ToSendStuffBit(0);
+ ToSendStuffBit(0);
+ ToSendStuffBit(1); // 1
+ ToSendStuffBit(0);
+ ToSendStuffBit(0);
+ ToSendStuffBit(0);
+
+ // Send startbit
+ ToSend[++ToSendMax] = SEC_D;
+
+ uint8_t b = cmd;
+ for(i = 0; i < 4; i++) {
+ if(b & 1) {
+ ToSend[++ToSendMax] = SEC_D;
+ } else {
+ ToSend[++ToSendMax] = SEC_E;
+ }
+ b >>= 1;
+ }
+
+ // Send stopbit
+ ToSend[++ToSendMax] = SEC_F;
+
+ // Flush the buffer in FPGA!!
+ for(i = 0; i < 5; i++) {
+ ToSend[++ToSendMax] = SEC_F;
+ }
+
+ // Convert from last byte pos to length
+ ToSendMax++;
}
//-----------------------------------------------------------------------------
memcpy(resp3a, ToSend, ToSendMax); resp3aLen = ToSendMax;
// Strange answer is an example of rare message size (3 bits)
- CodeStrangeAnswer();
+ CodeStrangeAnswerAsTag();
memcpy(resp4, ToSend, ToSendMax); resp4Len = ToSendMax;
// Authentication answer (random nonce)
volatile uint8_t b = (uint8_t)AT91C_BASE_SSC->SSC_RHR;
if(MillerDecoding((b & 0xf0) >> 4)) {
*len = Uart.byteCnt;
- if (tracing) LogTrace(received, *len, 0, GetParity(received, *len), TRUE);
+ if (tracing) LogTrace(received, *len, GetDeltaCountUS(), Uart.parityBits, TRUE);
return 0;
}
if(MillerDecoding(b & 0x0f)) {
*len = Uart.byteCnt;
- if (tracing) LogTrace(received, *len, 0, GetParity(received, *len), TRUE);
+ if (tracing) LogTrace(received, *len, GetDeltaCountUS(), Uart.parityBits, TRUE);
return 0;
}
}
}
if(AT91C_BASE_SSC->SSC_SR & (AT91C_SSC_TXRDY)) {
if(i > respLen) {
- b = 0x00;
+ b = 0xff; // was 0x00
u++;
} else {
b = resp[i];
return 0;
}
-static int EmSendCmdEx(uint8_t *resp, int respLen, int correctionNeeded){
- CodeIso14443aAsTag(resp, respLen);
+int EmSend4bitEx(uint8_t resp, int correctionNeeded){
+ Code4bitAnswerAsTag(resp);
int res = EmSendCmd14443aRaw(ToSend, ToSendMax, correctionNeeded);
- if (tracing) LogTrace(resp, respLen, 0, GetParity(resp, respLen), FALSE);
+ if (tracing) LogTrace(&resp, 1, GetDeltaCountUS(), GetParity(&resp, 1), FALSE);
return res;
}
-static int EmSendCmd(uint8_t *resp, int respLen){
- return EmSendCmdEx(resp, respLen, 0);
+int EmSend4bit(uint8_t resp){
+ return EmSend4bitEx(resp, 0);
+}
+
+int EmSendCmdExPar(uint8_t *resp, int respLen, int correctionNeeded, uint32_t par){
+ CodeIso14443aAsTagPar(resp, respLen, par);
+ int res = EmSendCmd14443aRaw(ToSend, ToSendMax, correctionNeeded);
+ if (tracing) LogTrace(resp, respLen, GetDeltaCountUS(), par, FALSE);
+ return res;
+}
+
+int EmSendCmdEx(uint8_t *resp, int respLen, int correctionNeeded){
+ return EmSendCmdExPar(resp, respLen, correctionNeeded, GetParity(resp, respLen));
+}
+
+int EmSendCmd(uint8_t *resp, int respLen){
+ return EmSendCmdExPar(resp, respLen, 0, GetParity(resp, respLen));
+}
+
+int EmSendCmdPar(uint8_t *resp, int respLen, uint32_t par){
+ return EmSendCmdExPar(resp, respLen, 0, par);
}
//-----------------------------------------------------------------------------
if (MF_DBGLEVEL >= 2) DbpString("READ BLOCK FINISHED");
// add trace trailer
- uid[0] = 0xff;
- uid[1] = 0xff;
- uid[2] = 0xff;
- uid[3] = 0xff;
+ memset(uid, 0x44, 4);
LogTrace(uid, 4, 0, 0, TRUE);
UsbCommand ack = {CMD_ACK, {isOK, 0, 0}};
if (MF_DBGLEVEL >= 2) DbpString("READ SECTOR FINISHED");
// add trace trailer
- uid[0] = 0xff;
- uid[1] = 0xff;
- uid[2] = 0xff;
- uid[3] = 0xff;
+ memset(uid, 0x44, 4);
LogTrace(uid, 4, 0, 0, TRUE);
UsbCommand ack = {CMD_ACK, {isOK, 0, 0}};
if (MF_DBGLEVEL >= 2) DbpString("WRITE BLOCK FINISHED");
// add trace trailer
- uid[0] = 0xff;
- uid[1] = 0xff;
- uid[2] = 0xff;
- uid[3] = 0xff;
+ memset(uid, 0x44, 4);
LogTrace(uid, 4, 0, 0, TRUE);
UsbCommand ack = {CMD_ACK, {isOK, 0, 0}};
crypto1_destroy(pcs);
// add trace trailer
- uid[0] = 0xff;
- uid[1] = 0xff;
- uid[2] = 0xff;
- uid[3] = 0xff;
+ memset(uid, 0x44, 4);
LogTrace(uid, 4, 0, 0, TRUE);
for (i = 0; i < NES_MAX_INFO; i++) {
crypto1_destroy(pcs);
// add trace trailer
- uid[0] = 0xff;
- uid[1] = 0xff;
- uid[2] = 0xff;
- uid[3] = 0xff;
+ memset(uid, 0x44, 4);
LogTrace(uid, 4, 0, 0, TRUE);
UsbCommand ack = {CMD_ACK, {isOK, 0, 0}};
{
int cardSTATE = MFEMUL_NOFIELD;
int vHf = 0; // in mV
- int res, i;
+ int nextCycleTimeout = 0;
+ int res;
uint32_t timer = 0;
uint32_t selTimer = 0;
uint32_t authTimer = 0;
uint32_t par = 0;
int len = 0;
- uint8_t bt;
+ uint8_t cardWRBL = 0;
uint8_t cardAUTHSC = 0;
uint8_t cardAUTHKEY = 0xff; // no authentication
uint32_t cuid = 0;
uint64_t key64 = 0xffffffffffffULL;
- uint8_t* receivedCmd = mifare_get_bigbufptr();
+ uint8_t* receivedCmd = eml_get_bigbufptr_recbuf();
+ uint8_t *response = eml_get_bigbufptr_sendbuf();
static uint8_t rATQA[] = {0x04, 0x00}; // Mifare classic 1k
static uint8_t rAUTH_NT[] = {0x1a, 0xac, 0xff, 0x4f};
static uint8_t rAUTH_AT[] = {0x00, 0x00, 0x00, 0x00};
- static uint8_t cmdBuf[18];
// clear trace
traceLen = 0;
tracing = true;
+ // emulator memory
+ emlClearMem();
+ emlGetMemBt(rUIDBCC1, 0, 4);
+ rUIDBCC1[4] = rUIDBCC1[0] ^ rUIDBCC1[1] ^ rUIDBCC1[2] ^ rUIDBCC1[3];
+
// -------------------------------------- test area
// Authenticate response - nonce
- uint8_t *resp1 = (((uint8_t *)BigBuf) + CARD_MEMORY);
+ uint8_t *resp1 = (((uint8_t *)BigBuf) + EML_RESPONSES);
int resp1Len;
- uint8_t *resp2 = (((uint8_t *)BigBuf) + CARD_MEMORY + 200);
- int resp2Len;
+// uint8_t *resp2 = (((uint8_t *)BigBuf) + EML_RESPONSES + 200);
+// int resp2Len;
CodeIso14443aAsTag(rAUTH_NT, sizeof(rAUTH_NT));
memcpy(resp1, ToSend, ToSendMax); resp1Len = ToSendMax;
uint32_t rn_enc = 0x98d76b77; // !!!!!!!!!!!!!!!!!
uint32_t ans = 0;
cuid = bytes_to_num(rUIDBCC1, 4);
-
+/*
crypto1_create(pcs, key64);
crypto1_word(pcs, cuid ^ nonce, 0);
crypto1_word(pcs, rn_enc , 1);
CodeIso14443aAsTag(rAUTH_AT, sizeof(rAUTH_AT));
memcpy(resp2, ToSend, ToSendMax); resp2Len = ToSendMax;
Dbprintf("crypto auth time: %d", GetTickCount() - timer);
-
+*/
// -------------------------------------- END test area
+ // start mkseconds counter
+ StartCountUS();
// We need to listen to the high-frequency, peak-detected path.
SetAdcMuxFor(GPIO_MUXSEL_HIPKD);
FpgaWriteConfWord(FPGA_MAJOR_MODE_HF_ISO14443A | FPGA_HF_ISO14443A_TAGSIM_LISTEN);
SpinDelay(200);
-Dbprintf("--> start");
+ Dbprintf("--> start");
+ // calibrate mkseconds counter
+ GetDeltaCountUS();
while (true) {
WDT_HIT();
+ if(BUTTON_PRESS()) {
+ break;
+ }
+
// find reader field
// Vref = 3300mV, and an 10:1 voltage divider on the input
// can measure voltages up to 33000 mV
}
if (cardSTATE != MFEMUL_NOFIELD) {
- res = EmGetCmd(receivedCmd, &len, 100);
+ res = EmGetCmd(receivedCmd, &len, 100); // (+ nextCycleTimeout)
if (res == 2) {
cardSTATE = MFEMUL_NOFIELD;
LEDsoff();
if(res) break;
}
- if(BUTTON_PRESS()) {
- break;
- }
+ nextCycleTimeout = 0;
+
// if (len) Dbprintf("len:%d cmd: %02x %02x %02x %02x", len, receivedCmd[0], receivedCmd[1], receivedCmd[2], receivedCmd[3]);
if (len != 4 && cardSTATE != MFEMUL_NOFIELD) { // len != 4 <---- speed up the code 4 authentication
- // REQ or WUP request in ANY state and WUP in HALTED state
+ // REQ or WUP request in ANY state and WUP in HALTED state
if (len == 1 && ((receivedCmd[0] == 0x26 && cardSTATE != MFEMUL_HALTED) || receivedCmd[0] == 0x52)) {
selTimer = GetTickCount();
EmSendCmdEx(rATQA, sizeof(rATQA), (receivedCmd[0] == 0x52));
cuid = bytes_to_num(rUIDBCC2, 4);
cardSTATE = MFEMUL_WORK;
LED_B_ON();
-Dbprintf("--> WORK. anticol2 time: %d", GetTickCount() - timer);
+Dbprintf("--> WORK. anticol2 time: %d", GetTickCount() - selTimer);
break;
}
case MFEMUL_AUTH1:{
if (len == 8) {
-timer = GetTickCount();
// ---------------------------------
rn_enc = bytes_to_num(receivedCmd, 4);
crypto1_create(pcs, key64);
num_to_bytes(ans, 4, rAUTH_AT);
// ---------------------------------
EmSendCmd(rAUTH_AT, sizeof(rAUTH_AT));
-// EmSendCmd14443aRaw(resp2, resp2Len, 0);
cardSTATE = MFEMUL_AUTH2;
} else {
cardSTATE = MFEMUL_IDLE;
LED_C_ON();
cardSTATE = MFEMUL_WORK;
-Dbprintf("AUTH COMPLETED. sec=%d, key=%d time=%d a=%d", cardAUTHSC, cardAUTHKEY, GetTickCount() - authTimer, GetTickCount() - timer);
+Dbprintf("AUTH COMPLETED. sec=%d, key=%d time=%d", cardAUTHSC, cardAUTHKEY, GetTickCount() - authTimer);
break;
}
case MFEMUL_WORK:{
// auth
if (len == 4 && (receivedCmd[0] == 0x60 || receivedCmd[0] == 0x61)) {
- authTimer = GetTickCount();
+authTimer = GetTickCount();
// EmSendCmd(rAUTH_NT, sizeof(rAUTH_NT));
-//SpinDelayUs(30);
EmSendCmd14443aRaw(resp1, resp1Len, 0);
+LogTrace(NULL, 0, GetDeltaCountUS(), 0, TRUE);
// crypto1_create(pcs, key64);
// if (cardAUTHKEY == 0xff) { // first auth
// crypto1_word(pcs, cuid ^ bytes_to_num(rAUTH_NT, 4), 0); // uid ^ nonce
cardAUTHSC = receivedCmd[1] / 4; // received block num
cardAUTHKEY = receivedCmd[0] - 0x60;
cardSTATE = MFEMUL_AUTH1;
+ nextCycleTimeout = 10;
break;
}
if (len == 0) break;
// decrypt seqence
- if (cardAUTHKEY != 0xff){
- if (len != 1) {
- for (i = 0; i < len; i++)
- receivedCmd[i] = crypto1_byte(pcs, 0x00, 0) ^ receivedCmd[i];
- } else {
- bt = 0;
- for (i = 0; i < 4; i++)
- bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(receivedCmd[0], i)) << i;
+ if (cardAUTHKEY != 0xff) mf_crypto1_decrypt(pcs, receivedCmd, len);
- receivedCmd[0] = bt;
- }
+ // rule 13 of 7.5.3. in ISO 14443-4. chaining shall be continued
+ // BUT... ACK --> NACK
+ if (len == 1 && receivedCmd[0] == CARD_ACK) {
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_NACK_NA));
+ break;
+ }
+
+ // rule 12 of 7.5.3. in ISO 14443-4. R(NAK) --> R(ACK)
+ if (len == 1 && receivedCmd[0] == CARD_NACK_NA) {
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_ACK));
+ break;
}
// read block
if (len == 4 && receivedCmd[0] == 0x30) {
- cmdBuf[0] = 0;
- par = 0;
-/* memcpy(cmdBuf, blockData, 16);
- AppendCrc14443a(cmdBuf, 16);
-
- // crypto
- par = 0;
- for (i = 0; i < 18; i++) {
- d_block_enc[pos] = crypto1_byte(pcs, 0x00, 0) ^ cmdBuf[pos];
- par = (par >> 1) | ( ((filter(pcs->odd) ^ oddparity(cmdBuf[pos])) & 0x01) * 0x20000 );
- }
-*/
- //ReaderTransmitPar(d_block_enc, sizeof(d_block_enc), par);
-Dbprintf("read block: %d", receivedCmd[1]);
+ if (receivedCmd[1] >= 16 * 4) {
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_NACK_NA));
+ break;
+ }
+ emlGetMem(response, receivedCmd[1], 1);
+ AppendCrc14443a(response, 16);
+ mf_crypto1_encrypt(pcs, response, 18, &par);
+ EmSendCmdPar(response, 18, par);
break;
}
// write block
if (len == 4 && receivedCmd[0] == 0xA0) {
-Dbprintf("write block: %d", receivedCmd[1]);
+ if (receivedCmd[1] >= 16 * 4) {
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_NACK_NA));
+ break;
+ }
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_ACK));
+ nextCycleTimeout = 50;
+ cardSTATE = MFEMUL_WRITEBL2;
+ cardWRBL = receivedCmd[1];
break;
}
-
+
// halt
if (len == 4 && (receivedCmd[0] == 0x50 && receivedCmd[1] == 0x00)) {
cardSTATE = MFEMUL_HALTED;
break;
}
break;
+
+ // command not allowed
+ if (len == 4) {
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_NACK_NA));
+ break;
+ }
+ }
+ case MFEMUL_WRITEBL2:{
+ if (len == 18){
+ mf_crypto1_decrypt(pcs, receivedCmd, len);
+ emlSetMem(receivedCmd, cardWRBL, 1);
+ EmSend4bit(mf_crypto1_encrypt4bit(pcs, CARD_ACK));
+ cardSTATE = MFEMUL_WORK;
+ break;
+ }
+Dbprintf("err write block: %d len:%d", cardWRBL, len);
+ break;
}
}
LEDsoff();
// add trace trailer
+ memset(rAUTH_NT, 0x44, 4);
LogTrace(rAUTH_NT, 4, 0, 0, TRUE);
DbpString("Emulator stopped.");
//-----------------------------------------------------------------------------\r
// Merlok, May 2011\r
-// Many authors, that makes it possible\r
+// Many authors, whom made it possible\r
//\r
// This code is licensed to you under the terms of the GNU GPL, version 2 or,\r
// at your option, any later version. See the LICENSE.txt file for the text of\r
// the license.\r
//-----------------------------------------------------------------------------\r
-// code for work with mifare cards.\r
+// Work with mifare cards.\r
//-----------------------------------------------------------------------------\r
\r
#include "proxmark3.h"\r
\r
int MF_DBGLEVEL = MF_DBG_ALL;\r
\r
+// memory management\r
uint8_t* mifare_get_bigbufptr(void) {\r
- return (((uint8_t *)BigBuf) + 3560); // was 3560 - tied to other size changes\r
+ return (((uint8_t *)BigBuf) + MIFARE_BUFF_OFFSET); // was 3560 - tied to other size changes\r
+}\r
+uint8_t* eml_get_bigbufptr_sendbuf(void) {\r
+ return (((uint8_t *)BigBuf) + RECV_CMD_OFFSET); \r
+}\r
+uint8_t* eml_get_bigbufptr_recbuf(void) {\r
+ return (((uint8_t *)BigBuf) + MIFARE_BUFF_OFFSET);\r
+}\r
+uint8_t* eml_get_bigbufptr_cardmem(void) {\r
+ return (((uint8_t *)BigBuf) + CARD_MEMORY);\r
+}\r
+\r
+// crypto1 helpers\r
+void mf_crypto1_decrypt(struct Crypto1State *pcs, uint8_t *data, int len){\r
+ uint8_t bt = 0;\r
+ int i;\r
+ \r
+ if (len != 1) {\r
+ for (i = 0; i < len; i++)\r
+ data[i] = crypto1_byte(pcs, 0x00, 0) ^ data[i];\r
+ } else {\r
+ bt = 0;\r
+ for (i = 0; i < 4; i++)\r
+ bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data[0], i)) << i;\r
+ \r
+ data[0] = bt;\r
+ }\r
+ return;\r
+}\r
+\r
+void mf_crypto1_encrypt(struct Crypto1State *pcs, uint8_t *data, int len, uint32_t *par) {\r
+ uint8_t bt = 0;\r
+ int i;\r
+ uint32_t mltpl = 1 << (len - 1); // for len=18 it=0x20000\r
+ *par = 0;\r
+ for (i = 0; i < len; i++) {\r
+ bt = data[i];\r
+ data[i] = crypto1_byte(pcs, 0x00, 0) ^ data[i];\r
+ *par = (*par >> 1) | ( ((filter(pcs->odd) ^ oddparity(bt)) & 0x01) * mltpl );\r
+ } \r
+ return;\r
+}\r
+\r
+uint8_t mf_crypto1_encrypt4bit(struct Crypto1State *pcs, uint8_t data) {\r
+ uint8_t bt = 0;\r
+ int i;\r
+\r
+ for (i = 0; i < 4; i++)\r
+ bt |= (crypto1_bit(pcs, 0, 0) ^ BIT(data, i)) << i;\r
+ \r
+ return bt;\r
}\r
\r
+// send commands\r
int mifare_sendcmd_short(struct Crypto1State *pcs, uint8_t crypted, uint8_t cmd, uint8_t data, uint8_t* answer)\r
{\r
return mifare_sendcmd_shortex(pcs, crypted, cmd, data, answer, NULL);\r
return len;\r
}\r
\r
+// mifare commands\r
int mifare_classic_auth(struct Crypto1State *pcs, uint32_t uid, uint8_t blockNo, uint8_t keyType, uint64_t ui64Key, uint64_t isNested) \r
{\r
return mifare_classic_authex(pcs, uid, blockNo, keyType, ui64Key, isNested, NULL);\r
return 0;\r
}\r
\r
+// work with emulator memory\r
+void emlSetMem(uint8_t *data, int blockNum, int blocksCount) {\r
+ uint8_t* emCARD = eml_get_bigbufptr_cardmem();\r
+ \r
+ memcpy(emCARD + blockNum * 16, data, blocksCount * 16);\r
+}\r
+\r
+void emlGetMem(uint8_t *data, int blockNum, int blocksCount) {\r
+ uint8_t* emCARD = eml_get_bigbufptr_cardmem();\r
+ \r
+ memcpy(data, emCARD + blockNum * 16, blocksCount * 16);\r
+}\r
+\r
+void emlGetMemBt(uint8_t *data, int bytePtr, int byteCount) {\r
+ uint8_t* emCARD = eml_get_bigbufptr_cardmem();\r
+ \r
+ memcpy(data, emCARD + bytePtr, byteCount);\r
+}\r
+\r
+void emlClearMem(void) {\r
+ int i;\r
+ \r
+ const uint8_t trailer[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x07, 0x80, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};\r
+ const uint8_t empty[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};\r
+ const uint8_t uid[] = {0xe6, 0x84, 0x87, 0xf3, 0x16, 0x88, 0x04, 0x00, 0x46, 0x8e, 0x45, 0x55, 0x4d, 0x70, 0x41, 0x04};\r
+ // fill sectors data\r
+ for(i = 0; i < 16; i++) {\r
+ emlSetMem((uint8_t *)empty, i * 4 + 0, 1);\r
+ emlSetMem((uint8_t *)empty, i * 4 + 1, 1);\r
+ emlSetMem((uint8_t *)empty, i * 4 + 2, 1);\r
+ emlSetMem((uint8_t *)trailer, i * 4 + 3, 1);\r
+ }\r
+\r
+ // uid\r
+ emlSetMem((uint8_t *)uid, 0, 1);\r
+ return;\r
+}\r