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

KeyExchangeDiffieHellmanGroup16Sha512

Represents "diffie-hellman-group16-sha512" algorithm implementation.
using System; using System.Numerics; namespace Renci.SshNet.Security { internal sealed class KeyExchangeDiffieHellmanGroup16Sha512 : KeyExchangeDiffieHellmanGroupSha512 { private static readonly BigInteger MoreModularExponentialGroup16Reversed = new BigInteger(new ReadOnlySpan<byte>(&global::<PrivateImplementationDetails>.595F0155C9BE061A2286355588AC228FD04A89FD45C0FB4E4BB4F55C7CC09690, 513), false, false); public override BigInteger GroupPrime => MoreModularExponentialGroup16Reversed; public override string Name => "diffie-hellman-group16-sha512"; } }