Skip to content

.Net Framework support for newer encryption algortihms. #1478

Closed
@ericpanorel

Description

@ericpanorel

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions