You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dim pkf As New Renci.SshNet.PrivateKeyFile("c:\path\to\private.key")
Dim sc As New Renci.SshNet.SshClient("192.168.1.66", "username", pkf)
sc.Connect()
And I just get an infinite loop in RsaCipher.cs, specifically
while (random <= BigInteger.One || random >= max)
{
random = BigInteger.Random(bitLength);
}
Using a linux host, ssh -i private.key [email protected] works without issue. Unfortunately I must use private key authentication and do not have the option to test other methods with this host. Putty from the same windows machine also works.
The text was updated successfully, but these errors were encountered:
Not sure if I'm doing something wrong here....
Dim pkf As New Renci.SshNet.PrivateKeyFile("c:\path\to\private.key")
Dim sc As New Renci.SshNet.SshClient("192.168.1.66", "username", pkf)
sc.Connect()
And I just get an infinite loop in RsaCipher.cs, specifically
Using a linux host, ssh -i private.key [email protected] works without issue. Unfortunately I must use private key authentication and do not have the option to test other methods with this host. Putty from the same windows machine also works.
The text was updated successfully, but these errors were encountered: