System.Security.Cryptography.HMAC
namespace System.Security.Cryptography
{
public abstract class HMAC : KeyedHashAlgorithm
{
protected int BlockSizeValue { get; set; }
public string HashName { get; set; }
protected HMAC();
public new static HMAC Create();
public new static HMAC Create(string algorithmName);
}
}