1

问题:当我尝试通过 sharpssh 连接时捕获此错误算法协商失败

我用密码生成公钥和 ssh-2 RSA 私钥。然后导出到 OpenSSHH 并使用它来连接

要连接我试过:

if (input.IdentityFile != null) sshCp.AddIdentityFile(input.IdentityFile, "123456");

谢谢

4

1 回答 1

0

“AddIdentityFile”方法需要一个指向您的私钥文件的路径字符串。尝试:

if (input.IdentityFile != null)
    sshCp.AddIdentityFile("path", "123456");
于 2016-02-25T11:21:58.970 回答