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