DESFire卡上的Credit值文件时出现0x9E参数错误

时间:2015-05-26 09:34:06

标签: android nfc mifare apdu contactless-smartcard

我现在使用DESFire卡上的值文件。我使用以下命令在DESFire卡中创建了一个值文件:

byte[] cmdCreateValueFile = new byte[]{
        //cmd
        (byte)0xCC,
        //file no
        (byte)0x01, 
        //com.sett.
        (byte)0x00 ,
        //access rights
        (byte)0x44 , (byte)0x44,
        //lower limit
        (byte)0x00 ,(byte)0x00 ,(byte)0x00 ,(byte)0x00 ,
        //upper limit
        (byte)0x00 ,(byte)0x0F ,(byte)0x42 ,(byte)0x40 ,
        //initial value
        (byte)0x00 ,(byte)0x00 ,(byte)0x00 ,(byte)0x00 ,
        //limited credit enabled
        (byte)0x00
};

然后我用这个命令来记住文件的值:

//select my app first
...
doAuthenticate(); //authenticate with key #4 of my application

//credit in value file
tagResponse_cmdcredit = isodep.transceive(Utils.wrapMessage(
        (byte)0x0C, new byte[]{(byte) 0x01 , 
        //data
        (byte)0x00,(byte)0x00, (byte)0x03 , (byte)0xE8}));
Log.d("credittttttttttt", "111 "+Utils.bytesToHex(tagResponse_cmdcredit));

//do commit transaction
tagResponse_cmdCommitTransaction = isodep.transceive(Utils.wrapMessage(
        (byte)0xC7, null));
Log.d("committtttttttt", "111 "+Utils.bytesToHex(tagResponse_cmdCommitTransaction));

我的wrapMessage帮助器方法如下所示:

public static byte[] wrapMessage (byte command, byte[] parameters) throws Exception {
    ByteArrayOutputStream stream = new ByteArrayOutputStream();

    stream.write((byte) 0x90);
    stream.write(command);
    stream.write((byte) 0x00);
    stream.write((byte) 0x00);
    if (parameters != null) {
        stream.write((byte) parameters.length);
        stream.write(parameters);
    }
    stream.write((byte) 0x00);

    byte[] b = stream.toByteArray();
    return b;
}

但我收到91 9E错误。可能是什么问题?

1 个答案:

答案 0 :(得分:0)

编辑: 我发现了我的错误!我没有注意创建值文件命令中的MSB和LSB值初始化。如果下限为 0x00 0x00 0x00 0x00 (零)且上限值为 0x0F 0x42 0x40 (1000 000),则必须如此:

tagResponse_cmdcreateValueFile = isodep.transceive(Utils.wrapMessage((byte)0xCC, new byte[]{(byte)0x01, 
                        //com.sett.
                        (byte)0x00 ,
                        //access rights
                        (byte)0x44 , (byte)0x44,
                        //lower limit
                        (byte)0x00 ,(byte)0x00 ,(byte)0x00 ,(byte)0x00 ,
                        //upper limit
                        (byte)0x40 ,(byte)0x42 ,(byte)0x0F ,(byte)0x00 ,
                        //initial value
                        (byte)0x00 ,(byte)0x00 ,(byte)0x00 ,(byte)0x00 ,
                        //limited credit enabled
                        (byte)0x00}));

我发现了我的错误!根据DESFire文档,该值始终表示为 LSB优先

当我想要信用额度为1000时,我需要传递

(byte)0xE8, (byte)0x03, (byte)0x00, (byte)0x00

到命令而不是0x00 0x00 0x03 0xE8(其中03E8是十进制的1000)。首先使用MSB传递值时,这将导致十进制值-402456576(带符号的4字节整数),这将高于上限。