Java JCE 无限强度加密安全策略文件
JRE 更新后,JCE 策略文件(位于 {java.home}/lib/security 中)是否会被标准强度策略文件覆盖?或者这些在 JRE 更新中是否保留?
编辑:有谁知道 Mac OS X JRE 是否附带无限的策略文件?
谢谢乔恩
Are the JCE policy files (in {java.home}/lib/security) overwritten with the standard strength policy files after a JRE update? or are these left alone on JRE update?
EDIT: Does anyone know if the Mac OS X JRE ships with the unlimited policy files?
Thanks
Jon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我使用 JCE 策略文件的经验,它确实替换了文件,这让我感到沮丧。我最终在第一次运行时替换了文件。
但最终,使用 Bouncy Castle API 更合适,不需要无限强度的文件。这是一个更清洁的解决方案。
http://www.bouncycastle.org/
In my experience using JCE policy files, it did replace the files and I was frustrated. I ended up replacing the files at first run.
But at the end, using Bouncy Castle API was more appropriate, there was no need to have the unlimited strength files. It was a cleaner solution.
http://www.bouncycastle.org/