Java 中列出所有智能卡插槽

发布于 2024-12-09 12:33:48 字数 46 浏览 0 评论 0原文

如何在 Java 中搜索计算机中的所有可用插槽,以便获取每个插槽的每个密钥库?

How can I search through all available slots in the machine so I can get each keystore for each slot, in Java?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

§普罗旺斯的薰衣草 2024-12-16 12:33:48

正如我发现的,有这样的方法:

PKCS11 p11 = PKCS11.getInstance("/usr/local/lib/libsiecap11.so", "C_GetFunctionList", null, false); 
long[] slots = p11.C_GetSlotList(true);  

感谢 这个问题

As I've found, there is this a way:

PKCS11 p11 = PKCS11.getInstance("/usr/local/lib/libsiecap11.so", "C_GetFunctionList", null, false); 
long[] slots = p11.C_GetSlotList(true);  

thanks to this question

断舍离 2024-12-16 12:33:48

这不是一个非常精确的问题。

如果你不精确,那么“最可能”的解决方案是
http://download .oracle.com/javase/6/docs/jre/api/security/smartcardio/spec/javax/smartcardio/CardTerminals.html

但是你似乎在谈论PKCS#11(不是智能卡硬件“插槽”的直接映射)

This is not a very precise question.

If you are not precise, then the "most probable" solution is
http://download.oracle.com/javase/6/docs/jre/api/security/smartcardio/spec/javax/smartcardio/CardTerminals.html

But you seem to be talking about PKCS#11 (which is NOT the direct mapping of a smart card hardware "slot")

巡山小妖精 2024-12-16 12:33:48

用C++编写JNI代码并从java中调用它。

Write JNI code in C++ and call it from java.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文