<PackageReference Include="SSH.NET" Version="2023.0.0" />

Renci.SshNet.Security.KeyHostAlgorithm

Implements key support for host algorithm.
namespace Renci.SshNet.Security { public class KeyHostAlgorithm : HostAlgorithm { public Key Key { get; } public DigitalSignature DigitalSignature { get; } public KeyHostAlgorithm(string name, Key key); public KeyHostAlgorithm(string name, Key key, DigitalSignature digitalSignature); public KeyHostAlgorithm(string name, Key key, byte[] data); public KeyHostAlgorithm(string name, Key key, byte[] data, DigitalSignature digitalSignature); } }