将 Bouncy Castle 提供程序集成到 Java 程序中的最佳方法是什么?
将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,使用自己的代码将其添加为安全提供程序是最好的选择。
这是因为它仅依赖于项目,而不依赖于系统。将 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.