Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以.pem, .crt,.der格式购买的 SSL 证书。我想知道如何从证书中获取密钥文件。有没有办法做到这一点?
.pem
.crt
.der
您可以提取公钥。这具有有限的用处。也许您打算将相同的密钥与不使用证书的其他工具(如 SSH 或 PGP)一起使用。
使用 OpenSSL:
openssl x509 -pubkey -noout < cert.pem > pubkey.pem
您不能从证书中派生私钥。那会让整个事情变得毫无意义,不是吗?