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