Questions tagged «ssh2»

2
将OpenSSH私钥转换为SSH2私钥
有没有一种方法可以将现有的一对OpenSSH密钥转换为SSH2(ssh.com格式)密钥对? UPD:由于有一些有关ssh-keygen突然出现的答案,所以我将解释我的来历(这对于“您尝试了什么?”也将是一个很好的答案)。 $> diff --report-identical-files <(ssh-keygen -e -f ~/.ssh/id_dsa) <(ssh-keygen -e -f ~/.ssh/id_dsa.pub) Files /tmp/zshAGGWAK and /tmp/zshPZiIr6 are identical 换句话说,ssh-keygen对于私有和公共输入密钥,返回相同的密钥(原始文件的哈希明显不同,我已经对其进行了两次检查,以确保它们是有效的私有和公共密钥)。似乎ssh-keygen只为私有或公共输入密钥生成了公共密钥。 我做错了还是正常现象?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.