Closed
Description
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
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}");
}
Metadata
Metadata
Assignees
Labels
No labels