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

KeyExchangeDiffieHellmanGroup14Sha256

Represents "diffie-hellman-group14-sha256" algorithm implementation.
using System; using System.Numerics; namespace Renci.SshNet.Security { internal sealed class KeyExchangeDiffieHellmanGroup14Sha256 : KeyExchangeDiffieHellmanGroupSha256 { private static readonly BigInteger SecondOkleyGroupReversed = new BigInteger(new ReadOnlySpan<byte>(&global::<PrivateImplementationDetails>.06B03ED429C3AF63E607D1710DC09E0D9BCD28AE6FD7E963917192FEEF327A06, 257), false, false); public override string Name => "diffie-hellman-group14-sha256"; public override BigInteger GroupPrime => SecondOkleyGroupReversed; } }