<PackageReference Include="SshNet.Security.Cryptography" Version="1.1.0-beta1" />

HMACSHA1

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