在Ubuntu上,我使用ssh-keygen -t rsa -b 4096命令生成了一个密钥。在尝试用OpenSSH将生成的密钥转换为ssh-keygen -i -f id_rsa.pub > id_rsa_openssh.pub格式时,我得到了错误的uudecode失败的。是否知道如何解决此错误。
发布于 2021-06-03 13:18:26
可能太晚了,但使用
ssh-keygen -e -f id_rsa.pub > id_rsa_openssh.pub为我工作过。
https://stackoverflow.com/questions/61923158
复制相似问题