从文件中生成带密码的私钥

发布于 2024-09-02 02:20:13 字数 156 浏览 4 评论 0原文

我有这个命令:

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 技术交流群。

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

发布评论

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

评论(2

万水千山粽是情ミ 2024-09-09 02:20:13

查看 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.

楠木可依 2024-09-09 02:20:13

通过省略-des3,您将不会被提示输入密码(即密钥不会被加密)。

By omimtting -des3 you won't be prompted for a passphrase (i.e. the key will not be encrypted).

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