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

HMACSHA384

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