Openssl 不从 openssl.cnf 读取默认值

发布于 2024-12-01 02:29:10 字数 291 浏览 2 评论 0原文

我使用以下命令创建证书请求:

openssl req -config openssl.cnf -new -out [filename].csr -passout pass:[password]

openssl.cnf 文件位于我运行命令的目录中。
问题是系统仍然提示我提交国家、州、地区等的值。
我想以编程方式执行此操作,而无需有人介入并输入这些值。 openssl.cnf 不应该提供要使用的默认值吗?我错过了一个论据或什么吗?

I am using the following command to create a certificate request:

openssl req -config openssl.cnf -new -out [filename].csr -passout pass:[password]

The openssl.cnf file is in the directory that I run the command from.
The problem is that I am still prompted to submit the values for country, state, locality, etc.
I want to do this programmatically, without someone having to step in and type these values. Shouldn't openssl.cnf provide the default values to be used? Am I missing an argument or something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初心 2024-12-08 02:29:10

在您的情况下,正确的语法是:

openssl req -batch -config openssl.cnf -new -out [filename].csr -passout pass:[password]

将在“privkey.pem”中同时生成 2048b RSA 私钥。
如果您更喜欢为预先存在的密钥创建请求,请添加选项:

-key [keyfile]

In your case the correct syntax would be:

openssl req -batch -config openssl.cnf -new -out [filename].csr -passout pass:[password]

A 2048b RSA private key will be generated at the same time in 'privkey.pem'.
If you prefer creating a request for a pre-existing key, add option :

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