I'm using a mifare classic 4k card. I try to write text in the second block of the card. When I try the function AuthenticateKeyNo(1, 1, MifareKeyType.KT_KEY_A)
, it gives me the following error:
"Reference key not useable"
This is my code:
public void WriteData()
{
IReaderUnit reader = null;
var readerProvider = new PCSCReaderProvider();
IEnumerable readerList = readerProvider.GetReaderList();
IEnumerable found = (IEnumerable)readerProvider.WaitForReaders(new string[] { "SCM Microsystems Inc. SCL010 Contactless Reader 0" }, 1, true);
foreach (IReaderUnit item in found.OfType<IReaderUnit>())
reader = item;
if (reader.WaitInsertion(30000))
{
if (reader.Connect())
{
chip chip = reader.GetSingleChip();
if (chip is MifareChip)
{
IMifareCommands cmd = chip.Commands as IMifareCommands;
MifareKey key = new MifareKey();
key.Value = "ff ff ff ff ff ff";
cmd.LoadKeyNo(1, key, MifareKeyType.KT_KEY_A);
cmd.AuthenticateKeyNo(1, 1, MifareKeyType.KT_KEY_A);
cmd.WriteBinary(1, "test");
}
}
}
}
I use liblogicalaccess.com dll
Can anybody explain me what is wrong with my code?
It might be an issue, because you are providing
String
value as a Key. Keys are ussuallyByte-arrays
(0xFF, 0xFF,..).In the GitHub project of the Library you used, I could see in the example they used
fromString("FF FF .. FF")
so fromString might be converting theString
into something else (probably byte-array or Hex values).