从文件中生成带密码的私钥
我有这个命令:
openssl genrsa -des3 -out host.key 1024
它要求我输入密码,我想自动化它!如何让它从文本文件(host.pass)读取密码,这样它就不会询问我,或者让它忽略密码?哪种方法更好?
I have this command:
openssl genrsa -des3 -out host.key 1024
It asks me for a password, and I want to automate it! How I can make it read the password from a text file (host.pass) so it will not ask me, or have it ignore the password? Which approach is better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 openssl 和 genrsa 的联机帮助页。根据这些,您可以使用选项
-passout file:host.pass
。Have a look at the manpage of openssl and genrsa. According to these you can use the option
-passout file:host.pass
.通过省略
-des3
,您将不会被提示输入密码(即密钥不会被加密)。By omimtting
-des3
you won't be prompted for a passphrase (i.e. the key will not be encrypted).