将 SSH2 密钥转换为 OpenSSH 格式

Posted

技术标签:

【中文标题】将 SSH2 密钥转换为 OpenSSH 格式【英文标题】:Converting SSH2 Key to OpenSSH Format 【发布时间】:2020-09-07 09:55:14 【问题描述】:

在 Ubuntu 上,我使用 ssh-keygen -t rsa -b 4096 命令生成了一个密钥。 在尝试将生成的密钥转换为 OpenSSH 格式时 ssh-keygen -i -f id_rsa.pub > id_rsa_openssh.pub,我收到错误 uudecode failed。 知道如何解决此错误。

【问题讨论】:

ssh-keygen(OpenSSH 的一部分)创建的id_rsa.pub 文件已经是 OpenSSH 公钥格式,不需要也不能导入。尽管它用于 SSH2 protocol(以及匹配的私钥),但它与 OpenSSH 所称的“SSH2”格式完全无关,这实际上是商业 Tectia-now-ssh-dot-com 产品. @dave_thompson_085 谢谢。 【参考方案1】:

可能为时已晚,但正在使用

ssh-keygen -e -f id_rsa.pub > id_rsa_openssh.pub

为我工作。

【讨论】:

以上是关于将 SSH2 密钥转换为 OpenSSH 格式的主要内容,如果未能解决你的问题,请参考以下文章

将 openSSH rsa 密钥转换为 javax.crypto.Cipher 兼容格式

Node.js:如何将 RSA 公钥转换为 OpenSSH 格式?

如何将生成的 Openssh 格式的私钥转换为在 IDEA IDE 中集成颠覆

putty秘钥转换成xhell支持的格式

如何把OpenSSH公钥转换成OpenSSL格式

使用 node-forge 将 ssh 公钥从各种格式转换为 Open SSH