4

假设我想向 Mifare Classic 进行身份验证。

我如何知道要发送到卡的确切 APDU 类型?

例子。

这段代码:

bcla = 0xFF;
bins = 0x86;
bp1 =  0x0;
bp2 =  0x0; // currentBlock
len =  0x5;

sendBuffer[0] = bcla;
sendBuffer[1] = bins;
sendBuffer[2] = bp1;
sendBuffer[3] = bp2;
sendBuffer[4] = len;
sendBuffer[5] = 0x1;                // Version
sendBuffer[6] = 0x0;                // Address MSB
sendBuffer[7] = currentBlock;
if(keyradioButton->Checked==true)   // Address LSB
     sendBuffer[8] = 0x60;              // Key Type A
else if(keynumberradioButton->Checked ==true)
    sendBuffer[8] = 0x61;               // Key Type B
sendBuffer[9] = keynumber;          // Key Number

sendbufferlen = 0xA;
receivebufferlen = 255;

//Invoke the Transmit command
retval = SCardTransmit(hCard,  // A reference value returned from the SCardConnect function.
                                 &sioreq, 
                              sendBuffer,  // Send buffer
                           sendbufferlen,  // Send buffer length
                                 &rioreq, 
                           receiveBuffer,  // Receive butter
                      &receivebufferlen);  // Length of received buffer

是一个尝试向 Mifare Classic 进行身份验证的示例程序。我的问题基本上是,我怎么知道要向卡发送什么样的 APDU?例如,我怎么知道应该是什么sendBuffer

4

2 回答 2

6

在 Mifare Classic 1K 标签中有 16 个扇区,每个扇区包含 4 个块,每个块包含 16 个字节。

  1. 扇区 0 包含块 (0,1,2,3)
  2. 扇区 1 包含块 (4,5,6,7)
  3. 扇区 2 包含块 (8,9,10,11)
  4. 扇区 3 包含块 (12,13,14,15)....

从块读取或写入之前您必须使用该扇区的密钥 A 或密钥 B 验证其相应的扇区。身份验证完成后,您可以读取或写入。使用此命令,您可以使用 KEY A(60) 验证扇区 0

byte[] authenticationByte = new byte[10];  

authenticationByte = new byte[] { (byte) 0xFF, (byte) 0x86, (byte) 0x00,
 (byte) 0x00, (byte) 0x05, (byte) 0x00,(byte) 0x00, (byte) 0x04, 
                                    (byte) 0x60,(byte) 0x00 };

当身份验证成功时,您将获得 90 00。那是成功消息。否则响应为 63 00 ,表示身份验证失败。身份验证完成后,您可以读取块 (0,1,2,3),因为扇区 0 包含 4 个块,它们是块 (0,1,2,3)。

有关更多详细信息,您可以阅读此答案。对不起英语不好

于 2015-01-31T19:45:11.243 回答
3

阅读这篇文章。在这里您将找到与 Mifare 卡通信的 APDU 结构...

于 2013-09-16T11:47:27.340 回答