Beispiel #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            NFC nFC = db.NFC.Find(id);

            db.NFC.Remove(nFC);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public void TestMethodMapperSendNFC()
 {
     NFC testNFC1 = new NFC(false, "Lyngby St.", DateTime.Now, 1000);
     var task = mapper.sendNFC(testNFC1);
     task.Wait();
     var actualResult = task.Result;
     Assert.AreEqual(true, actualResult);
 }
Beispiel #3
0
        public static bool unlock_card(NFC.nfc_device pnd)
        {
            byte[] abtRx = new byte[264];
            int    szRx;

            /*
             * if (magic2)
             * {
             *  //printf("Don't use R/W with this card, this is not required!\n");
             *  return false;
             * }*/
            byte[] abtHalt = { 0x50, 0x00, 0x00, 0x00 };
            // special unlock command
            byte[] abtUnlock1 = { 0x40 };
            byte[] abtUnlock2 = { 0x43 };
            // Configure the CRC
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_HANDLE_CRC, false) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_configure");
                return(false);
            }
            // Use raw send/receive methods
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_EASY_FRAMING, false) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_configure");
                return(false);
            }

            ISO14443Subr.iso14443a_crc_append(abtHalt, 2);
            szRx = NFC.nfc_initiator_transceive_bytes(pnd, abtHalt, 4, abtRx, abtRx.Length, 0);//transmit_bytes(abtHalt, 4);

            // now send unlock
            if ((szRx = NFC.nfc_initiator_transceive_bits(pnd, abtUnlock1, 7, null, abtRx, abtRx.Length, null)) < 0)//!transmit_bits(abtUnlock1, 7)
            {
                //printf("unlock failure!\n");
                return(false);
            }
            if ((szRx = NFC.nfc_initiator_transceive_bits(pnd, abtUnlock2, 1, null, abtRx, abtRx.Length, null)) < 0)//(!transmit_bytes(abtUnlock2, 1))
            {
                //printf("unlock failure!\n");
                return(false);
            }

            // reset reader
            // Configure the CRC
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_HANDLE_CRC, true) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_device_set_property_bool");
                return(false);
            }
            // Switch off raw send/receive methods
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_EASY_FRAMING, true) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_device_set_property_bool");
                return(false);
            }
            return(true);
        }
Beispiel #4
0
        public void AddNFC(NFC _nfc)
        {
            if (nfc == null)
            {
                nfc = new List <NFC>();
            }

            nfc.Add(_nfc);
        }
Beispiel #5
0
        public Jobs()
        {
            InitializeComponent();

            DataContext = jobsViewModel;

            nfc = new NFC();
            nfc.Init();
        }
Beispiel #6
0
 public ActionResult Edit([Bind(Include = "idNFC,NFC1,Estatus")] NFC nFC)
 {
     if (ModelState.IsValid)
     {
         db.Entry(nFC).State = EntityState.Modified;
         nFC.Estatus         = "Disponible";
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(nFC));
 }
Beispiel #7
0
        public ActionResult Create([Bind(Include = "idNFC,NFC1,Estatus")] NFC nFC)
        {
            if (ModelState.IsValid)
            {
                db.NFC.Add(nFC);
                nFC.Estatus = "Disponible";
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(nFC));
        }
 public void TestMethodMapperSendNFCs()
 {
     NFC testNFC1 = new NFC(false, "Lyngby St.", DateTime.Now, 1000);
     NFC testNFC2 = new NFC(false, "Alarmpanel stuen gammel bygning.", DateTime.Now, 1000);
     List<NFC> testNFCs = new List<NFC>();
     testNFCs.Add(testNFC1);
     testNFCs.Add(testNFC2);
     var task = mapper.sendNFCs(testNFCs);
     task.Wait();
     var actualResult = task.Result;
     Assert.AreEqual(true, actualResult);
 }
Beispiel #9
0
        unlock_card()
        {
            /*
             * if (magic2)
             * {
             *  //printf("Don't use R/W with this card, this is not required!\n");
             *  return false;
             * }*/

            // Configure the CRC
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_HANDLE_CRC, false) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_configure");
                return(false);
            }
            // Use raw send/receive methods
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_EASY_FRAMING, false) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_configure");
                return(false);
            }

            ISO14443Subr.iso14443a_crc_append(abtHalt, 2);
            transmit_bytes(abtHalt, 4);
            // now send unlock
            if (!transmit_bits(abtUnlock1, 7))
            {
                //printf("unlock failure!\n");
                return(false);
            }
            if (!transmit_bytes(abtUnlock2, 1))
            {
                //printf("unlock failure!\n");
                return(false);
            }

            // reset reader
            // Configure the CRC
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_HANDLE_CRC, true) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_device_set_property_bool");
                return(false);
            }
            // Switch off raw send/receive methods
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_EASY_FRAMING, true) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_device_set_property_bool");
                return(false);
            }
            return(true);
        }
Beispiel #10
0
        // GET: NFCs/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            NFC nFC = db.NFC.Find(id);

            if (nFC == null)
            {
                return(HttpNotFound());
            }
            return(View(nFC));
        }
Beispiel #11
0
        transmit_bits(byte[] pbtTx, int szTxBits)//const const
        {
            // Show transmitted command
            //printf("Sent bits:     ");
            //print_hex_bits(pbtTx, szTxBits);
            // Transmit the bit frame command, we don't use the arbitrary parity feature
            if ((szRxBits = NFC.nfc_initiator_transceive_bits(pnd, pbtTx, szTxBits, null, abtRx, abtRx.Length, null)) < 0)
            {
                return(false);
            }

            // Show received answer
            //printf("Received bits: ");
            //print_hex_bits(abtRx, szRxBits);
            // Succesful transfer
            return(true);
        }
Beispiel #12
0
        public async Task <List <NFC> > getNFCs()
        {
            List <NFC> nfcs   = new List <NFC>();
            int        length = currentNumberOfNFCs();
            long       id     = 0;

            if (length > 0)
            {
                for (int i = 0; i < length; i++)
                {
                    id = i + 1;
                    NFC nfc = await getNFC(id);

                    nfcs.Add(nfc);
                }
            }
            return(nfcs);
        }
Beispiel #13
0
        public static bool authenticate(NFC.nfc_device pnd, NFC.nfc_target pnt, uint uiBlock, byte[] key, mifare_cmd mc)
        {
            mifare_param mp = new mifare_param();

            // Set the authentication information (uid)
            MiscTool.memcpy(mp.mpa.abtAuthUid, 0, pnt.nti.nai.abtUid, pnt.nti.nai.szUidLen - 4, 4);
            MiscTool.memcpy(mp.mpa.abtKey, 0, key, 0, 6);
            if (nfc_initiator_mifare_cmd(pnd, mc, (byte)uiBlock, mp))
            {
                return(true);
            }
            if (NFC.nfc_initiator_select_passive_target(pnd, nmMfClassic, pnt.nti.nai.abtUid, pnt.nti.nai.szUidLen, null) <= 0)
            {
                //ERR("tag was removed");
                return(false);
            }
            return(true);
        }
Beispiel #14
0
        transmit_bytes(byte[] pbtTx, int szTx)
        {
            // Show transmitted command
            //printf("Sent bits:     ");
            //print_hex(pbtTx, szTx);
            // Transmit the command bytes
            int res;

            if ((res = NFC.nfc_initiator_transceive_bytes(pnd, pbtTx, szTx, abtRx, abtRx.Length, 0)) < 0)
            {
                return(false);
            }

            // Show received answer
            //printf("Received bits: ");
            //print_hex(abtRx, res);
            // Succesful transfer
            return(true);
        }
Beispiel #15
0
        public async Task <Boolean> createNFC(NFC nfc)
        {
            long id = getNextNfcId();

            try
            {
                appSettings.Add(id + KEY_DUMMY_NFC_EMPLOYEE_ID, nfc.EmployeeId);
                appSettings.Add(id + KEY_DUMMY_NFC_RANGECHECK, nfc.RangeCheck);
                appSettings.Add(id + KEY_DUMMY_NFC_ADDRESSID, nfc.AddressId);
                appSettings.Add(id + KEY_DUMMY_NFC_TIME, nfc.Time);

                appSettings.Save();
                return(true);
            }
            catch (IsolatedStorageException)
            {
                Debug.WriteLine("Addresses did not get saved in dummyDB");
                return(false);
            }
        }
Beispiel #16
0
        public static int get_rats(NFC.nfc_device pnd, NFC.nfc_target pnt, byte[] abtRx)
        {
            int res;

            byte[] abtRats = { 0xe0, 0x50 };
            // Use raw send/receive methods
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_EASY_FRAMING, false) < 0)
            {
                NFC.nfc_perror(pnd, "nfc_configure");
                return(-1);
            }
            res = NFC.nfc_initiator_transceive_bytes(pnd, abtRats, abtRats.Length, abtRx, abtRx.Length, 0);
            if (res > 0)
            {
                // ISO14443-4 card, turn RF field off/on to access ISO14443-3 again
                if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_ACTIVATE_FIELD, false) < 0)
                {
                    NFC.nfc_perror(pnd, "nfc_configure");
                    return(-1);
                }
                if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_ACTIVATE_FIELD, true) < 0)
                {
                    NFC.nfc_perror(pnd, "nfc_configure");
                    return(-1);
                }
            }
            // Reselect tag after using get_rats, example:
            if (NFC.nfc_initiator_select_passive_target(pnd, nmMfClassic, null, 0, pnt) <= 0)
            {
                //printf("Error: tag disappeared\n");
                //NFC.nfc_close(pnd);
                //NFC.nfc_exit(context);
                //exit(EXIT_FAILURE);
                return(-1);
            }
            return(res);
        }
Beispiel #17
0
        public async Task <Boolean> sendNFC(NFC nfc)
        {
            Debug.WriteLine("NFC " + nfc.Time);
            try
            {
                using (HttpClient client = new HttpClient())
                {
                    String json             = JsonConvert.SerializeObject(nfc);
                    var    resultWebservice = await client.PostAsync("http://gryphon.dk/GryphonSecurityRestFullWebservice/webServices/createNFC.php/", new StringContent(json, Encoding.UTF8, "application/json"));

                    //var resultWebservice = await client.PostAsync("http://kragsberger.dk/GryphonSecurityRestFullWebservice/webServices/createNFC.php/", new StringContent(json, Encoding.UTF8, "application/json"));
                    //var resultWebservice = await client.GetAsync("http://kragsberger.dk/rest/" + name);
                    resultWebservice.EnsureSuccessStatusCode();

                    Boolean result = Convert.ToBoolean(JsonConvert.DeserializeObject <String>(await resultWebservice.Content.ReadAsStringAsync()));
                    Debug.WriteLine("Result from createNFC " + result);
                    return(result);
                }
            } catch (Exception ex)
            {
                Debug.WriteLine("catch in createNFC");
                return(false);
            }
        }
Beispiel #18
0
        read_card(int read_unlocked)
        {
            uint iBlock;
            bool bFailure     = false;
            uint uiReadBlocks = 0;

            if (read_unlocked != 0)
            {
                if (!unlock_card())
                {
                    return(false);
                }
            }

            //printf("Reading out %d blocks |", uiBlocks + 1);
            // Read the card from end to begin
            for (iBlock = uiBlocks; iBlock >= 0; iBlock--)
            {
                // Authenticate everytime we reach a trailer block
                if (is_trailer_block(iBlock))
                {
                    if (bFailure)
                    {
                        // When a failure occured we need to redo the anti-collision
                        if (NFC.nfc_initiator_select_passive_target(pnd, nmMifare, null, 0, nt) <= 0)
                        {
                            //printf("!\nError: tag was removed\n");
                            return(false);
                        }
                        bFailure = false;
                    }

                    //fflush(stdout);

                    // Try to authenticate for the current sector
                    if (0 == read_unlocked && !authenticate(iBlock))
                    {
                        //printf("!\nError: authentication failed for block 0x%02x\n", iBlock);
                        return(false);
                    }
                    // Try to read out the trailer
                    if (Mifare.nfc_initiator_mifare_cmd(pnd, Mifare.mifare_cmd.MC_READ, (byte)iBlock, mp))
                    {
                        if (0 != read_unlocked)
                        {
                            MiscTool.memcpy(mtDump.amb[iBlock].mbd.abtData, 0, mp.mpd.abtData, 0, 16);
                        }
                        else
                        {
                            // Copy the keys over from our key dump and store the retrieved access bits
                            MiscTool.memcpy(mtDump.amb[iBlock].mbt.abtKeyA, 0, mtKeys.amb[iBlock].mbt.abtKeyA, 0, 6);
                            MiscTool.memcpy(mtDump.amb[iBlock].mbt.abtAccessBits, 0, mp.mpd.abtData, 6, 4);
                            MiscTool.memcpy(mtDump.amb[iBlock].mbt.abtKeyB, 0, mtKeys.amb[iBlock].mbt.abtKeyB, 0, 6);
                        }
                    }
                    else
                    {
                        //printf("!\nfailed to read trailer block 0x%02x\n", iBlock);
                        bFailure = true;
                    }
                }
                else
                {
                    // Make sure a earlier readout did not fail
                    if (!bFailure)
                    {
                        // Try to read out the data block
                        if (Mifare.nfc_initiator_mifare_cmd(pnd, Mifare.mifare_cmd.MC_READ, (byte)iBlock, mp))
                        {
                            MiscTool.memcpy(mtDump.amb[iBlock].mbd.abtData, 0, mp.mpd.abtData, 0, 16);
                        }
                        else
                        {
                            //printf("!\nError: unable to read block 0x%02x\n", iBlock);
                            bFailure = true;
                        }
                    }
                }
                // Show if the readout went well for each block
                print_success_or_failure(bFailure, ref uiReadBlocks);
                if ((!bTolerateFailures) && bFailure)
                {
                    return(false);
                }
            }
            //printf("|\n");
            //printf("Done, %d of %d blocks read.\n", uiReadBlocks, uiBlocks + 1);
            //fflush(stdout);

            return(true);
        }
Beispiel #19
0
 public async Task <Boolean> createNFC(NFC nfc)
 {
     return(await connection.sendNFC(nfc));
 }
Beispiel #20
0
        nfc_initiator_mifare_cmd(NFCInternal.nfc_device pnd, mifare_cmd mc, byte ui8Block, mifare_param pmp)
        {
            byte[] abtRx = new byte[265];
            byte   szParamLen;

            byte[] abtCmd = new byte[265];
            //bool    bEasyFraming;

            abtCmd[0] = (byte)mc;         // The MIFARE Classic command
            abtCmd[1] = ui8Block;         // The block address (1K=0x00..0x39, 4K=0x00..0xff)

            switch (mc)
            {
            // Read and store command have no parameter
            case mifare_cmd.MC_READ:
            case mifare_cmd.MC_STORE:
                szParamLen = 0;
                break;

            // Authenticate command
            case mifare_cmd.MC_AUTH_A:
            case mifare_cmd.MC_AUTH_B:
                szParamLen = (byte)pmp.mpa.Length();    //sizeof( mifare_param_auth);
                if (szParamLen > 0)
                {
                    pmp.mpa.FillRawData(abtCmd, 2);
                }
                break;

            // Data command
            case mifare_cmd.MC_WRITE:
                szParamLen = (byte)pmp.mpd.Length();    //sizeof( mifare_param_data);
                if (szParamLen > 0)
                {
                    pmp.mpd.FillRawData(abtCmd, 2);
                }
                break;

            // Value command
            case mifare_cmd.MC_DECREMENT:
            case mifare_cmd.MC_INCREMENT:
            case mifare_cmd.MC_TRANSFER:
                szParamLen = (byte)pmp.mpv.Length();    //sizeof( mifare_param_value);
                if (szParamLen > 0)
                {
                    pmp.mpv.FillRawData(abtCmd, 2);
                }
                break;

            // Please fix your code, you never should reach this statement
            default:
                return(false);

                break;
            }


            // FIXME: Save and restore bEasyFraming
            // bEasyFraming = nfc_device_get_property_bool (pnd, NP_EASY_FRAMING, &bEasyFraming);
            if (NFC.nfc_device_set_property_bool(pnd, NFC.nfc_property.NP_EASY_FRAMING, true) < 0)
            {
                //nfc_perror(pnd, "nfc_device_set_property_bool");
                return(false);
            }
            // Fire the mifare command
            int res;

            if ((res = NFC.nfc_initiator_transceive_bytes(pnd, abtCmd, 2 + szParamLen, abtRx, abtRx.Length, -1)) < 0)
            {
                if (res == NFC.NFC_ERFTRANS)
                {
                    // "Invalid received frame",  usual means we are
                    // authenticated on a sector but the requested MIFARE cmd (read, write)
                    // is not permitted by current acces bytes;
                    // So there is nothing to do here.
                }
                else
                {
                    //nfc_perror(pnd, "nfc_initiator_transceive_bytes");
                }
                // XXX nfc_device_set_property_bool (pnd, NP_EASY_FRAMING, bEasyFraming);
                return(false);
            }

            /* XXX
             * if (nfc_device_set_property_bool (pnd, NP_EASY_FRAMING, bEasyFraming) < 0) {
             * nfc_perror (pnd, "nfc_device_set_property_bool");
             * return false;
             * }
             */

            // When we have executed a read command, copy the received bytes into the param
            if (mc == mifare_cmd.MC_READ)
            {
                if (res == 16)
                {
                    MiscTool.memcpy(pmp.mpd.abtData, 0, abtRx, 0, 16);
                }
                else
                {
                    return(false);
                }
            }
            // Command succesfully executed
            return(true);
        }
Beispiel #21
0
        authenticate(uint uiBlock)
        {
            Mifare.mifare_cmd mc;
            uint uiTrailerBlock;

            // Set the authentication information (uid)
            MiscTool.memcpy(mp.mpa.abtAuthUid, 0, nt.nti.nai.abtUid, nt.nti.nai.szUidLen - 4, 4);

            // Should we use key A or B?
            mc = (bUseKeyA) ? Mifare.mifare_cmd.MC_AUTH_A : Mifare.mifare_cmd.MC_AUTH_B;

            // Key file authentication.
            if (bUseKeyFile)
            {
                // Locate the trailer (with the keys) used for this sector
                uiTrailerBlock = get_trailer_block(uiBlock);

                // Extract the right key from dump file
                if (bUseKeyA)
                {
                    MiscTool.memcpy(mp.mpa.abtKey, 0, mtKeys.amb[uiTrailerBlock].mbt.abtKeyA, 0, 6);
                }
                else
                {
                    MiscTool.memcpy(mp.mpa.abtKey, 0, mtKeys.amb[uiTrailerBlock].mbt.abtKeyB, 0, 6);
                }

                // Try to authenticate for the current sector
                if (Mifare.nfc_initiator_mifare_cmd(pnd, mc, (byte)uiBlock, mp))
                {
                    return(true);
                }
            }

            // If formatting or not using key file, try to guess the right key
            if (bFormatCard || !bUseKeyFile)
            {
                for (int key_index = 0; key_index < num_keys; key_index++)
                {
                    MiscTool.memcpy(mp.mpa.abtKey, 0, keys, (key_index * 6), 6);
                    if (Mifare.nfc_initiator_mifare_cmd(pnd, mc, (byte)uiBlock, mp))
                    {
                        if (bUseKeyA)
                        {
                            MiscTool.memcpy(mtKeys.amb[uiBlock].mbt.abtKeyA, 0, mp.mpa.abtKey, 0, 6);
                        }
                        else
                        {
                            MiscTool.memcpy(mtKeys.amb[uiBlock].mbt.abtKeyB, 0, mp.mpa.abtKey, 0, 6);
                        }
                        return(true);
                    }
                    if (NFC.nfc_initiator_select_passive_target(pnd, nmMifare, nt.nti.nai.abtUid, nt.nti.nai.szUidLen, null) <= 0)
                    {
                        //ERR("tag was removed");
                        return(false);
                    }
                }
            }

            return(false);
        }
Beispiel #22
0
        write_card(int write_block_zero)
        {
            uint uiBlock;
            bool bFailure      = false;
            uint uiWriteBlocks = 0;

            if (write_block_zero != 0)
            {
                if (!unlock_card())
                {
                    return(false);
                }
            }

            //printf("Writing %d blocks |", uiBlocks + 1);
            // Write the card from begin to end;
            for (uiBlock = 0; uiBlock <= uiBlocks; uiBlock++)
            {
                // Authenticate everytime we reach the first sector of a new block
                if (is_first_block(uiBlock))
                {
                    if (bFailure)
                    {
                        // When a failure occured we need to redo the anti-collision
                        if (NFC.nfc_initiator_select_passive_target(pnd, nmMifare, null, 0, nt) <= 0)
                        {
                            //printf("!\nError: tag was removed\n");
                            return(false);
                        }
                        bFailure = false;
                    }

                    //fflush(stdout);

                    // Try to authenticate for the current sector
                    if (0 == write_block_zero && !authenticate(uiBlock))
                    {
                        //printf("!\nError: authentication failed for block %02x\n", uiBlock);
                        return(false);
                    }
                }

                if (is_trailer_block(uiBlock))
                {
                    if (bFormatCard)
                    {
                        // Copy the default key and reset the access bits
                        MiscTool.memcpy(mp.mpd.abtData, 0, default_key, 0, 6);
                        MiscTool.memcpy(mp.mpd.abtData, 6, default_acl, 0, 4);
                        MiscTool.memcpy(mp.mpd.abtData, 10, default_key, 0, 6);
                    }
                    else
                    {
                        // Copy the keys over from our key dump and store the retrieved access bits
                        MiscTool.memcpy(mp.mpd.abtData, 0, mtDump.amb[uiBlock].mbt.abtKeyA, 0, 6);
                        MiscTool.memcpy(mp.mpd.abtData, 6, mtDump.amb[uiBlock].mbt.abtAccessBits, 0, 4);
                        MiscTool.memcpy(mp.mpd.abtData, 10, mtDump.amb[uiBlock].mbt.abtKeyB, 0, 6);
                    }

                    // Try to write the trailer
                    if (Mifare.nfc_initiator_mifare_cmd(pnd, Mifare.mifare_cmd.MC_WRITE, (byte)uiBlock, mp) == false)
                    {
                        //printf("failed to write trailer block %d \n", uiBlock);
                        bFailure = true;
                    }
                }
                else
                {
                    // The first block 0x00 is read only, skip this
                    if (uiBlock == 0 && 0 == write_block_zero && !magic2)
                    {
                        continue;
                    }


                    // Make sure a earlier write did not fail
                    if (!bFailure)
                    {
                        // Try to write the data block
                        if (bFormatCard && uiBlock != 0)
                        {
                            MiscTool.memset(mp.mpd.abtData, 0x00, 16);
                        }
                        else
                        {
                            MiscTool.memcpy(mp.mpd.abtData, 0, mtDump.amb[uiBlock].mbd.abtData, 0, 16);
                        }
                        // do not write a block 0 with incorrect BCC - card will be made invalid!
                        if (uiBlock == 0)
                        {
                            if ((mp.mpd.abtData[0] ^ mp.mpd.abtData[1] ^ mp.mpd.abtData[2] ^ mp.mpd.abtData[3] ^ mp.mpd.abtData[4]) != 0x00 && !magic2)
                            {
                                //printf("!\nError: incorrect BCC in MFD file!\n");
                                //printf("Expecting BCC=%02X\n", mp.mpd.abtData[0] ^ mp.mpd.abtData[1] ^ mp.mpd.abtData[2] ^ mp.mpd.abtData[3]);
                                return(false);
                            }
                        }
                        if (!Mifare.nfc_initiator_mifare_cmd(pnd, Mifare.mifare_cmd.MC_WRITE, (byte)uiBlock, mp))
                        {
                            bFailure = true;
                        }
                    }
                }
                // Show if the write went well for each block
                print_success_or_failure(bFailure, ref uiWriteBlocks);
                if ((!bTolerateFailures) && bFailure)
                {
                    return(false);
                }
            }
            //printf("|\n");
            //printf("Done, %d of %d blocks written.\n", uiWriteBlocks, uiBlocks + 1);
            //fflush(stdout);

            return(true);
        }