<PackageReference Include="SshNet.Security.Cryptography" Version="1.3.0" />

HMACSHA512

public class HMACSHA512 : HMAC
Computes a Hash-based Message Authentication Code (HMAC) by using the HMACSHA512 hash function.
namespace SshNet.Security.Cryptography { public class HMACSHA512 : HMAC { protected override int BlockSize => 128; public HMACSHA512(byte[] key) : base(new SHA512HashProvider(), key) { } public HMACSHA512(byte[] key, int hashSize) : base(new SHA512HashProvider(), key, hashSize) { } } }