How to write MifareClassic with Custom Key
I need to find a solution to write Mifare Classic 1 K Tag with Custom Key. I am unable to write it, I have tried with every option but unfortunately all the time I get the error "IOException: Transceive Failed". Below is my code snippet: byte custom_key[]={ (byte)0xff,(byte)0xff,(byte)0xff,(byte)0xff,(byte)0xff,(byte)0xff }; // 16 bytes of Data. Otherwise it was throwing IllegalArgumentException . byte[] data="Hello world of N".getBytes(); getMfc().connect(); if(getMfc().authenticateSectorWithKeyA(4, custom_key)) { getMfc().writeBlock(3, data); // Here I receive IOException all the time. }