HMACSHA1
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)
{
}
}
}