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

HMACMD5

public class HMACMD5 : HMACMD5
Computes a Hash-based Message Authentication Code (HMAC) by using the MD5 hash function.
using Renci.SshNet.Common; using System.Security.Cryptography; namespace Renci.SshNet.Security.Cryptography { public class HMACMD5 : System.Security.Cryptography.HMACMD5 { private readonly int _hashSize; public override int HashSize => _hashSize; public HMACMD5(byte[] key) : base(key) { _hashSize = base.HashSize; } public HMACMD5(byte[] key, int hashSize) : base(key) { _hashSize = hashSize; } protected override byte[] HashFinal() { return base.HashFinal().Take(HashSize / 8); } } }