我有一个 xyz.cer 文件,我想从中提取密钥。我使用命令如下openssl x509 -pubkey -noout -in <file>
这会导致错误 x509:未知参数。
有人可以建议缺少了什么吗?
答案1
openssl x509 -pubkey -noout -in cert.pem
输出公钥。
如果这不起作用,您可能有一个没有 x509 支持的(奇怪的)openssl版本。
我有一个 xyz.cer 文件,我想从中提取密钥。我使用命令如下openssl x509 -pubkey -noout -in <file>
这会导致错误 x509:未知参数。
有人可以建议缺少了什么吗?
openssl x509 -pubkey -noout -in cert.pem
输出公钥。
如果这不起作用,您可能有一个没有 x509 支持的(奇怪的)openssl版本。