OpenSSH格式是一种较新的格式,自OpenSSH 7.0版本开始引入。它使用了一个更复杂的加密结构,并提供了更好的安全性。这种格式的私钥通常看起来像这样: ---BEGIN OPENSSH PRIVATE KEY--- ...base64 encoded data... ---END OPENSSH PRIVATE KEY--- BEGIN RSA PRIVATE KEY格式 传统的RSA私钥格式是一种较早的...
According to https://serverfault.com/questions/939909/ssh-keygen-does-not-create-rsa-private-key openssh has changed the default new key format. To get the old format you have to add '-m PEM' to the keygen command. That should be a simple patch to the module code. I have found that...