Renci.SshNet.Security.KeyExchangeEC
namespace Renci.SshNet.Security
{
internal abstract class KeyExchangeEC : KeyExchange
{
protected byte[] _clientPayload;
protected byte[] _serverPayload;
protected byte[] _clientExchangeValue;
protected byte[] _serverExchangeValue;
protected byte[] _hostKey;
protected byte[] _signature;
protected abstract int HashSize { get; }
protected KeyExchangeEC();
}
}