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.
我对加密中使用的各种密钥感到困惑。
亚马逊给了我key.pem
key.pem
在linux中我生成像 id_rsa和id_rsa.pub
id_rsa
id_rsa.pub
现在腻子使用了像这样的键key.ppk
key.ppk
我真的很困惑在哪里使用什么类型的密钥
key.pem 可以包含任何内容 - 带有公钥的证书、SSH 公钥、公钥 + 私钥、带有公钥 + 私钥的证书。PEM 是一个文本文件,因此您可以在记事本中打开它并检查其内容。
id_rsa 是 OpenSSH 格式的 SSH 私钥。id_rsa.pub 是 OpenSSH 格式的 SSH 公钥。
.ppk 文件是 Putty 的私钥(如果没记错的话)。
要在远程服务器上进行身份验证,您可以向其管理员提供您的公钥并在 SSH 客户端中使用私钥。或者(如果管理员为您提供密钥对),您可以使用该密钥对中的私钥。