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