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
var connectionInfo = new ConnectionInfo(hostname, port, username,
new PasswordAuthenticationMethod(username, password),
new KeyboardInteractiveAuthenticationMethod(username));
Console.WriteLine("Encryption algorithms:"); //aes256-gcm@openssh.com
foreach (var cipherInfo in connectionInfo.Encryptions)
{
Console.WriteLine($"- {cipherInfo.Key}");
}
The text was updated successfully, but these errors were encountered:
Are there any plans to support these algorithms?
aes256-gcm@openssh.com
aes128-gcm@openssh.com
for .Net Framework target?
These are present in .Net Core 6
The text was updated successfully, but these errors were encountered: