将 Bouncy Castle 提供程序集成到 Java 程序中的最佳方法是什么?

发布于 2024-11-16 10:42:44 字数 263 浏览 2 评论 0原文

将 Bouncy Castle 提供程序集成到 Java 程序中的最佳方法是什么? 我知道我可以通过以下方式以编程方式添加它:

import org.bouncycastle.jce.provider.BouncyCastleProvider;
...
Security.addProvider(new BouncyCastleProvider());

或者我可以将它添加到我的计算机上的 JRE 中的路径。

最好的选择是什么?

What's the best way to integrate the Bouncy Castle provider in a Java program?
I know I can add it programmatically, by using:

import org.bouncycastle.jce.provider.BouncyCastleProvider;
...
Security.addProvider(new BouncyCastleProvider());

Or either I can add it to a path in the JRE on my machine.

What's the best choice?

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

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

发布评论

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

评论(1

与他有关 2024-11-23 10:42:44

在我看来,使用自己的代码将其添加为安全提供程序是最好的选择。
这是因为它仅依赖于项目,而不依赖于系统。将 BouncyCastle jar 文件添加到您的项目中,并将它们添加到类路径中,仅此而已。它将适用于所有系统,无需进一步的手动安装步骤。

如果您将 BouncyCastle 安装到 JRE 中,则在必须更新 JRE 时总会遇到问题。

In my opinion the adding it as security provider with own code is the best option.
This is because it is only project dependent - not system dependent. Add the BouncyCastle jar file(s) to your project and add them to the class-path and that's it. It will work on all systems without need for further manual installation steps.

If you install BouncyCastle into the JRE you always have problems in case you have to update the JRE.

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