如何导出RSA没有密码的证书私钥
15113
Created On 03/22/22 08:12 AM - Last Modified 03/07/23 07:51 AM
Objective
导出证书私钥时,密码字段不能为空。 这些字段是必需的。
出于安全原因,无法从证书中导出证书的私钥PAN-OS没有密码的设备。
Environment
- PAN-OS
Procedure
解决方法是使用另一台装有 openssl 的机器来删除密码:
- 从中导出证书PAN-OS有密码的设备
- 使用文本编辑器编辑 .pem 文件以仅保留加密的私钥并将文件另存为“with-pass_private.key”
- 在外部机器上运行 openssl 命令
openssl rsa -in with-pass_private.key -out no-pass_private.key
- 新文件“no-pass_private.key”是没有密码的私钥。