安装参数JavaCard

时间:2015-09-29 09:26:23

标签: java javacard

我正在尝试使用GPShell中的-instParam选项为我的智能卡提供PIN码。我找到了一些例子,但我不知道如何使用给定的PIN初始化OwnerPIN对象。 AFAIK有一个LV编码结构给我applet的安装方法,但我该如何解析它。我尝试了BERTLV对象,但我得到了一个"条件不满意"然后安装applet时出错。 我有什么:

  public static void install(byte[] bArray, short bOffset, byte bLength)
            {

                new MYPinCard(bArray, bOffset, bLength);
            }
     private MYPinCard(byte[] bArray, short bOffset, byte bLength)
        {
            m_pin = new OwnerPIN(PIN_TRY_LIMIT, MAX_PIN_SIZE);
            byte iLen = bArray[bOffset]; // aid length
            short iOffset = (short) (bOffset+iLen+1);
            iLen = bArray[iOffset]; // application privileges length
            iOffset = (short) (iOffset+iLen+1);
            iLen = bArray[iOffset]; // application specific parameters length
            iOffset++;

            try
            {
                m_pin.update(bArray, iOffset, iLen);
            }
            catch (PINException e)
            {
                ISOException.throwIt((short)0x6AAA); 
            }
            testdata = new byte[iLen];

            Util.arrayCopy(bArray, bOffset, testdata, (short)0, iLen);
            register();
        }

 private void getInstallParams(APDU apdu)
    {
        try
        {
            byte[] buffer = apdu.getBuffer();
            // inform the JCRE that the applet has data to return
            short le = apdu.setOutgoing();
            // set the actual number of the outgoing data bytes
            apdu.setOutgoingLength(((short)testdata.length));
            apdu.sendBytesLong(testdata, (short)0, (short)testdata.length);

        }
        catch (APDUException e)
        {
            ISOException.throwIt(SW_APDU_EXCEPTION);
        }
        catch (TransactionException e)
        {
            ISOException.throwIt(SW_TRANSACTION_EXCEPTION);
        }
        catch (ArrayIndexOutOfBoundsException e)
        {
            ISOException.throwIt(SW_AIOOB_EXCEPTION);
        }
        catch (NullPointerException e)
        {
            ISOException.throwIt(SW_NULLPOINTER_EXCEPTION);
        }
    }

使用getInstallParams()方法,我可以检索字节。对于我的PIN,它是2字节值,但我不知道如何处理该字节。

任何提示?

1 个答案:

答案 0 :(得分:1)

我一遍又一遍地使用这个模板它只是工作(只要你有最多127个字节的参数):

&(short)0x00FF

注意正确处理负值字节的bLength部分。

请注意,上面的代码不会检查install()的{​​{1}}参数是错误的并且应该修复:)