4 authentication rfid smartcard mifare
假设我想对 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
Run Code Online (Sandbox Code Playgroud)
是一个尝试向 Mifare Classic 进行身份验证的示例程序。我的问题基本上是,我怎么知道要向卡发送什么样的 APDU?例如,我怎么知道应该是什么sendBuffer?
在 Mifare Classic 1K 标签中有 16 个扇区,每个扇区包含 4 个块,每个块包含 16 个字节。
在读取或写入块之前您必须使用该扇区的密钥 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 };
Run Code Online (Sandbox Code Playgroud)
当身份验证成功时,您将收到 90 00。这是成功消息。否则响应为 63 00 ,这意味着身份验证失败。身份验证完成后,您可以读取块 (0,1,2,3),因为扇区 0 包含 4 个块,而这些块是块 (0,1,2,3)。
有关更多详细信息,您可以阅读此答案。抱歉英语不好
| 归档时间: |
|
| 查看次数: |
14341 次 |
| 最近记录: |