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