Web Applett 中的 Java MSCAPI 错误?

发布于 2024-08-18 22:59:37 字数 278 浏览 2 评论 0原文

我正在开发一个应用程序,它使用 Java 的加密扩展(更具体地说是 MSCAPI),通过 Web 浏览器使用用户的私钥对文件进行签名。我已经能够在本地成功完成此操作,但是当我将类嵌入网页并尝试访问用户密钥库时,我收到以下错误:“没有这样的提供程序:SunMSCAPI”。有谁知道有关此错误原因的任何知识吗?

导致错误的代码行:

KeyStore ks = KeyStore.getInstance("Windows-MY", "SunMSCAPI");

谢谢

I am developing an application that uses Java's Crytographic Extension, more specifically MSCAPI, to sign a file using a user's private key all from a web browser. I have been able to do this succesfully locally, but when i embed the class in a web page and try to access users keystore i get the following error: "no such provider: SunMSCAPI". Does anyone have any knowledge pertaining to the cause of this error?

The line of code that causes the error:

KeyStore ks = KeyStore.getInstance("Windows-MY", "SunMSCAPI");

Thanks

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

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

发布评论

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

评论(1

〃安静 2024-08-25 22:59:37

截至目前,SunMSCAPI 仅在 Java 6 中可用。

SunMSCAPI is only available in Java 6 as of today.

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