无需身份验证即可从智能卡获取X509Certificates

时间:2016-07-21 09:32:36

标签: java x509certificate smartcard pkcs#11

我想从智能卡中检索X509Certificate列表而无需登录(没有PIN)。

我的代码如下:

    String conf = args[0];
    Provider p = new sun.security.pkcs11.SunPKCS11(conf);
    Security.addProvider(p);

    KeyStore ks = KeyStore.getInstance("PKCS11");

    1) ks.load(null, null);
    2) ks.load(null, "".toCharArray());

使用此StackTrace进行第一次测试(1)失败:

Exception in thread "main" java.io.IOException: load failed
    at sun.security.pkcs11.P11KeyStore.engineLoad(P11KeyStore.java:763)
    at java.security.KeyStore.load(Unknown Source)
    at TestPKCS11.main(TestPKCS11.java:29)
Caused by: javax.security.auth.login.LoginException: no password provided, and n
o callback handler available for retrieving password
        at sun.security.pkcs11.SunPKCS11.login(SunPKCS11.java:1184)
        at sun.security.pkcs11.P11KeyStore.login(P11KeyStore.java:849)
        at sun.security.pkcs11.P11KeyStore.engineLoad(P11KeyStore.java:751)

第二个(2)失败了:

Exception in thread "main" java.io.IOException: load failed
    at sun.security.pkcs11.P11KeyStore.engineLoad(P11KeyStore.java:763)
    at java.security.KeyStore.load(Unknown Source)
    at TestPKCS11.main(TestPKCS11.java:30)
Caused by: javax.security.auth.login.LoginException
        at sun.security.pkcs11.SunPKCS11.login(SunPKCS11.java:1238)
        at sun.security.pkcs11.P11KeyStore.login(P11KeyStore.java:849)
        at sun.security.pkcs11.P11KeyStore.engineLoad(P11KeyStore.java:753)
        ... 2 more
Caused by: sun.security.pkcs11.wrapper.PKCS11Exception: CKR_PIN_INVALID
        at sun.security.pkcs11.wrapper.PKCS11.C_Login(Native Method)
        at sun.security.pkcs11.SunPKCS11.login(SunPKCS11.java:1222)

我的配置如下:

name=SmartCard
slotListIndex = 0
library=C:\gclib.dll
attributes(*,CKO_PUBLIC_KEY,*)={ CKA_TOKEN=true } 

注意:我有一个本地工具(Classic Client ToolBox),不需要PIN来显示证书。

1 个答案:

答案 0 :(得分:0)

无论您是否要登录,Sun的提供商总是会调用Login。坦率地说,可能是唯一的选择是改变方法,例如使用其他方式访问PKCS#11设备(例如,我们在SecureBlackbox中有这样的机制)。

另一方面,在不登录设备的情况下检索信息的可能性是一种信息泄露,因此获得列表或证书本身的可能性取决于特定设备。在您的设备上运行的功能可能无法在其他设备上运行。