2014-11-24 139 views
0

我有一个JCOP卡(CJ3A080)。这是OpenSC工具的输出list files命令:为什么我不能选择MF?

C:\>opensc-tool -a -c jcop -f -v 
Using reader with a card: ACS CCID USB Reader 0 
Connecting to card in reader ACS CCID USB Reader 0... 
Using card driver JCOP cards with BlueZ PKCS#15 applet. 
Card ATR: 
3B F8 13 00 00 81 31 FE 45 4A 43 4F 50 76 32 34 ;.....1.EJCOPv24 
31 B7           1. 
3f00 type: DF, size: 0 
select[NONE] lock[NEVR] delete[NEVR] create[NEVR] rehab[N/A] inval[N/A] list[NON 
E] 

    3f002f00 type: wEF, ef structure: transparent, size: 128 
    read[NONE] update[NEVR] erase[NEVR] write[NEVR] rehab[N/A] inval[N/A] 

00000000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000050: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 
00000070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 

C:\> 

问题1:什么是这些零个字节?它是EEPROM吗?如果是这样,为什么它只有128字节(而我的卡有80KB的EEPROM)?

问题2:下面这行元素的含义是什么?

select[NONE] lock[NEVR] delete[NEVR] create[NEVR] rehab[N/A] inval[N/A] list[NON 
E] 

问题2:我从输出明白,必须有与3F00作为其援助DF,对不对?那么为什么我不能选择它?

C:\>opensc-tool -s 00a40400023f00 
Using reader with a card: ACS CCID USB Reader 0 
Sending: 00 A4 04 00 02 3F 00 
Received (SW1=0x6A, SW2=0x82) 

C:\> 

注意,我认为这是一个解除融合卡(非个性化) - >看Here

更新1:

我测试了一些其他不同的卡(即使一些存储卡)与上述相同的命令。输出与上面的输出相同,只是ATR已更改!它这个输出正确和可靠吗?

更新2:

当我列出安装的驱动程序,这是输出:

C:\>opensc-tool -D 
Configured card drivers: 
    cardos   Siemens CardOS 
    flex    Schlumberger Multiflex/Cryptoflex 
    cyberflex  Schlumberger Cyberflex 
    gpk    Gemplus GPK 
    gemsafeV1  driver for the Gemplus GemSAFE V1 applet 
    miocos   MioCOS 1.1 
    mcrd    MICARDO 2.1/EstEID 1.0 - 3.0 
    asepcos   Athena ASEPCOS 
    starcos   STARCOS SPK 2.3/2.4 
    tcos    TCOS 3.0 
    openpgp   OpenPGP card 
    jcop    JCOP cards with BlueZ PKCS#15 applet 
    oberthur   Oberthur AuthentIC.v2/CosmopolIC.v4 
    authentic  Oberthur AuthentIC v3.1 
    iasecc   IAS-ECC 
    belpic   Belpic cards 
    ias    IAS 
    incrypto34  Incard Incripto34 
    acos5   ACS ACOS5 card 
    akis    TUBITAK UEKAE AKIS 
    entersafe  entersafe 
    epass2003  epass2003 
    rutoken   Rutoken driver 
    rutoken_ecp  Rutoken ECP driver 
    westcos   WESTCOS compatible cards 
    myeid   MyEID cards with PKCS#15 applet 
    sc-hsm   SmartCard-HSM 
    setcos   Setec cards 
    muscle   MuscleApplet 
    atrust-acos  A-Trust ACOS cards 
    piv    PIV-II for multiple cards 
    itacns   Italian CNS 
    javacard   JavaCard (without supported applet) 
    default   Default driver for unknown cards 

C:\> 

我的卡是JCOP卡。我可以在上面的列表中看到JCOP。但是,当我使用-n参数它用不受支持的卡的响应!

C:\>opensc-tool -n 
Using reader with a card: ACS CCID USB Reader 0 
Unsupported card 

回答

1

也许这卡不能被OpenSC

检查SupportedHardware列表支持。通过opensc-tool --name进行验证,看看有些司机是否知道如何处理您的卡。

该命令的预期结果是带有卡驱动程序名称的行。

+0

是的,你说得对。我更新了这个问题。当JCOP在安装列表中时,我们发现它会为我的恩智浦JCOP CJ3A080卡返回不支持的卡。为什么?再次因为它是未熔合的?或者我必须安装新的驱动程序?如果是这样,怎么样? – TheGoodUser 2014-11-24 10:29:33

+1

看看这个[链接](https://www.opensc-project.org/opensc/wiki/JavaCard)。它会帮助你 – BzH 2014-11-24 10:38:45

0

你有这样一行:

force_card_driver = jcop; 

在配置文件(opensc.conf)?

相关问题