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

Renci.SshNet.HashInfo

public class HashInfo
Holds information about key size and cipher to use
namespace Renci.SshNet { public class HashInfo { public int KeySize { get; } public Func<byte[], HashAlgorithm> HashAlgorithm { get; } public HashInfo(int keySize, Func<byte[], HashAlgorithm> hash); } }