MIFARE クラシック カードの任意のセクターを認証しようとしています。私は Twinlinx mymax ステッカーを使用しています (これにより、ほぼすべての Bluetooth デバイスで NFC が有効になります)。接続された NFC タグにコマンドを送信します。すでに Ultralight C タグで接続してデータを送受信しましたが、今のところ Mifare Classic へのアクセスに成功していません。これが私の認証コードです:
private boolean authenticate(int sector, byte[] key, boolean keyA) {
byte[] cmd = new byte[12];
// First byte is the command
if (keyA) {
cmd[0] = 0x60; // phHal_eMifareAuthentA
} else {
cmd[0] = 0x61; // phHal_eMifareAuthentB
}
// Second byte is block address
cmd[1] = (byte) 0x03;
// Next 6 bytes are the key
System.arraycopy(key, 0, cmd, 2, 6);
// Next 4 bytes is the UID
System.arraycopy(Answer, 3, cmd, 8,4);
byte[] test = null;
//this makes a connection to the NFC tag (and this works)
TR.ConnectToExternalCard(AUTH, (byte)0x00);
//checking if the tag is still connected
if (TR.isCardPresent() == true){
//sending command to authenticate
test = TR.SendCommandPropAndWaitResponse(cmd, (byte) 0x00);
}
try {
if (test != null) {
return true;
}
}
私は標準の MIFARE クラシック キーを使用しています。タグは工場から出荷されたばかりです。タグに送信される完全なコマンド (バイト単位) は次のとおりです。
[0x60、0x3、0xff、0xff、0xff、0xff、0xff、0xff、0xf3、0xf4、0xa9、0xfb]
何か案は?タグが応答していないようです... 他のクラシック タグにアクセスしようとしましたが、成功しませんでした。ありがとう!