5

我是 nfc 相关开发的新手。我想构建用于在 mifare desfire ev1 智能卡中读取和写入安全元素的 java 应用程序。所以我找到了免费库。但问题是我想先验证智能卡。所以我创建了一些身份验证方法并尝试使用它。但它总是说该类不支持错误。在这段代码中,我想将一些密钥加载到应用程序中。我想首先知道我是否想创建一些应用程序,如果它想要创建应用程序如何首先进行身份验证。

这些是我的代码

    /**
      * Load key
      */
   public String loadKey(byte[] key, char keyType) throws CardException
   {
       String res = null;
       System.out.println("Load Key");
       CommandAPDU apdu = this.reader.loadKey(this.decoder.decode(key), keyType);
       showAPDU(apdu.getBytes());
       ResponseAPDU r = send(apdu);
       showResponse(r.toString());
       if (r.getSW() == E_NO_ERROR) {
           System.out.println("Sucessfully Load  keys");
       } else{
           System.out.println("load keys failed");
       }
       res = APDUtoJSON(r).toString();
       return res;
   } 
//send command apdu
private ResponseAPDU send(CommandAPDU cmdApdu) throws CardException {
    return card.getBasicChannel().transmit(cmdApdu);
}

// read response in main class i call these methods
byte[] key = new byte[]{(byte) 0x1a, (byte) 0x1a, (byte) 0x1a, (byte) 0x1a,
                        (byte) 0x1a, (byte) 0x1a, (byte) 0x1a, (byte) 0x1a,
                        (byte) 0x1a, (byte) 0x1a, (byte) 0x1a, (byte) 0x1a,
                        (byte) 0x1a, (byte) 0x1a, (byte) 0x1a, (byte) 0x1a};
terminal.loadKey(key, 'a');
4

0 回答 0