在 Java 8 之前,SunPKCS11 提供程序的加载方式如下:
Provider provider = new sun.security.pkcs11.SunPKCS11 (new ByteArrayInputStream (configFile.getBytes ()));
Security.addProvider (provider);
configFile
是一个带有配置参数的字符串。因此,如果应用程序需要使用多个连接的智能卡,它可以创建多个提供程序。要访问每个提供程序,使用的名称是“SunPKCS11-”,后跟我们在配置中指定的名称。
在 Java 8 中,sun.security.pkcs11.SunPKCS11
JDK 中删除了该类。所以,我不得不通过反射来编程之前的调用。
Java 9 中 PKCS#11 提供程序的操作似乎非常不同:
构造
SunPKCS11
函数已更改为空的。配置是通过“configure”方法加载的,所以它必须在磁盘上的文件中,我不能再通过流将它加载到字符串中。如果我们尝试使用反射,则会出现以下警告:
WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by PruebaTarjeta (file:/C:/temp/pkcs11java9/classes/) to constructor sun.security.pkcs11.SunPKCS11() WARNING: Please consider reporting this to the maintainers of PruebaTarjeta WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release
- 在 Java 9 中,会自动生成一个 SunPKCS11 提供程序,并在加密提供程序列表中。可以从列表中获取并配置。问题是您只能在列表中加载一个 PKCS#11 提供程序。Java 9 文档表明我们可以使用“SunPKCS11-”后跟我们在配置中指定的名称来获取 PKCS#11 提供程序,但事实并非如此。如果我们查看提供者列表,唯一的一个是“SunPKCS11”,所以我不能每个智能卡都有一个提供者。
这是否也发生在其他人身上?有什么解决办法吗?