Openssl 不从 openssl.cnf 读取默认值
我使用以下命令创建证书请求:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的情况下,正确的语法是:
将在“privkey.pem”中同时生成 2048b RSA 私钥。
如果您更喜欢为预先存在的密钥创建请求,请添加选项:
In your case the correct syntax would be:
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 :