Renci.SshNet.Security.KeyExchangeECDH
namespace Renci.SshNet.Security
{
internal abstract class KeyExchangeECDH : KeyExchangeEC
{
protected ECDHCBasicAgreement KeyAgreement;
protected ECDomainParameters DomainParameters;
protected abstract X9ECParameters CurveParameter { get; }
protected KeyExchangeECDH();
}
}