1

我正在尝试将一个小程序加载到智能卡中,然后我只想使用以下代码进行一些测试:

import javax.smartcardio.*;
import java.util.*;

public class TestSmartCardIO {

    public static String toString(byte[] bytes) {
        StringBuffer sbTmp = new StringBuffer();
        for(byte b : bytes){
            sbTmp.append(String.format("%X", b));
        }
        return sbTmp.toString();
    }

    public static void main(String[] args) {
        try {
            TerminalFactory factory = TerminalFactory.getDefault();
            List terminals = factory.terminals().list();
            System.out.println("Terminals count: " + terminals.size());
            System.out.println("Terminals: " + terminals);

            // Get the first terminal in the list
            CardTerminal terminal = (CardTerminal) terminals.get(0);

            // Establish a connection with the card using
            // "T=0", "T=1", "T=CL" or "*"
            Card card = terminal.connect("*");
            System.out.println("Card: " + card);

            // Get ATR
            byte[] baATR = card.getATR().getBytes();
            System.out.println("ATR: " + TestSmartCardIO.toString(baATR) );

            CardChannel channel = card.getBasicChannel();

            /*SELECT Command
             See GlobalPlatform Card Specification (e.g. 2.2, section 11.9)
             CLA: 00
             INS: A4
             P1: 04 i.e. b3 is set to 1, means select by name
             P2: 00 i.e. first or only occurence
             Lc: 08 i.e. length of AID see below
             Data: A0 00 00 00 03 00 00 00
             AID of the card manager,
             in the future should change to A0 00 00 01 51 00 00*/

             byte[] baCommandAPDU = {(byte) 0x00, (byte) 0xA4, (byte) 0x04, (byte) 0x00, (byte) 0x08, (byte) 0xA0, (byte) 0x00, 
                                    (byte) 0x00, (byte) 0x00, (byte) 0x03, (byte) 0x00, (byte) 0x00, (byte) 0x00};
            System.out.println("APDU >>>: " + TestSmartCardIO.toString(baCommandAPDU));

            ResponseAPDU r = channel.transmit(new CommandAPDU(baCommandAPDU));
            System.out.println("APDU <<<: " + TestSmartCardIO.toString(r.getBytes()));

            // Disconnect
            // true: reset the card after disconnecting card.

            card.disconnect(true);
        } catch(Exception ex)  {
            ex.printStackTrace();
        }
    }
} 

所以我只想测试卡是否被识别以及是否可以正确发送 APDU。我试图通过 APDU 选择 AID 卡管理器,但我得到:

Terminals count: 1
Terminals: [PC/SC terminal OT MicroSD smartcard Reader 1]
Card: PC/SC card in OT MicroSD smartcard Reader 1, protocol T=1, state OK
ATR: 3BDB96081B1FE451F83031C0641A181019005D
APDU >>>: 0A4408A00003000
APDU <<<: 6A82

还有就是SW1 = 6ASW2 = 82没有找到AID卡管家……正常吗?我不太明白,我想知道它是否与卡使用协议的事实有关T = 1?非常感谢您的帮助

4

2 回答 2

3

之前 Global Platform 从 VISA 借用了RID(AID 的前 5 个字节)。这是因为历史原因。全球平台现在是一个独立的实体,但开放平台——正如它曾经被称为——是由(至少)VISA 启动的。有很多 RID 的注册

但是据我了解,VISA 不想再使用 Global Platform 来使用他们的 RID。因此请求了一个新的 RID。Global Platform 不再使用相当低的 RID,而是A000000003使用自己的A000000151RID。另一个区别是最后一个字节(可以是任何东西,最多 15 - 5 = 10 个字节,由组织指定)现在由两个字节组成,而不是三个。某些操作系统版本实际上会出错并且仍然使用三个00字节。

因此,您以前A000000003 000000对于开放平台和早期的 GP 实施以及对于后来的卡或全球平台规范,您必须A000000151 0000选择卡管理器。SELECT 的处理在 ISO/IEC 7816-4 中并不完全清楚。通常,如果您在 SELECT by NAME 中提供较小的 AID(至少 5 个字节),那么将选择匹配的应用程序。

于 2014-12-22T20:32:12.007 回答
1

只是一个友好的提醒,“在野外”使用 globalplatform/javacards 可能是一项艰巨的任务,把事情做好取决于许多因素。为此,您可能想看看GlobalPlatformPro(以前称为 GPJ)。

它应该从您的日常任务中隐藏许多烦人的技术细节(例如试图找出 ISD AID),同时如果您愿意,还可以为您提供详细研究事物的源代码。

于 2014-12-22T19:26:33.500 回答