有哪些用于管理 java 密钥库和安全证书的免费工具
有哪些用于管理 java 密钥库和安全证书的免费工具可用?
What free tools for managing java keystores and security certificates are available around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试portecle。至少,它有一个 GUI :-)
编辑(2020 年 9 月)Keystore Explorer 实际上功能更完整且更用户友好。
Try portecle. At least, it has a GUI :-)
EDIT (sept. 2020) Keystore Explorer is in fact more feature complete and more user-friendly.
另一种选择是 openssl。
根据自己的经验:
密钥工具。值得记住的是它只处理公钥。不要浪费几天时间来弄清楚;)
Portacle 能够管理私钥。如果您不想在某些自动化脚本中使用命令行工具,那么与使用用户友好的 GUI 工具相比,使用命令行工具是否有任何优势?
OpenSSL 对我来说似乎功能最丰富。它能够处理不简单的情况,例如创建CA并签署一些自签名证书,即创建证书链。 创建证书颁发机构和自签名签名的 SSL 证书
One more alternative is openssl.
From self experience:
keytool. It worth to keep in mind that it handles only public keys. Do not waste few days to figure it out ;)
Portacle is able to manage private keys. Are there any advantages to use command line tool if you are not trying to use it in some automation scripts than to use user friendly GUI tool?
OpenSSL appeared to be most feature rich as for me. It is able to handle not simplest situation like to create CA and sign some self signed sertificate, i.e. to create sertification chain. Creating Certificate Authorities and self-signed SSL certificates
keytool
http://download .oracle.com/javase/6/docs/technotes/tools/solaris/keytool.html
keytool
http://download.oracle.com/javase/6/docs/technotes/tools/solaris/keytool.html
我想说的是 JDK 附带的 keytool 命令行工具。一开始它看起来很复杂,但是一旦你习惯了它,它对于管理你的密钥库等非常有效。
但是,如果你真的不喜欢命令行,我想它不适合你。
I'd say the keytool command-line tool that comes with the JDK. It seems complicated in the beginning, but once you get used to it, it's pretty efficient for managing your keystores, etc.
If you really dislike command-line, though, I guess it's not for you.