System.Security.Cryptography.KeyedHashAlgorithm
namespace System.Security.Cryptography
{
public abstract class KeyedHashAlgorithm : HashAlgorithm
{
protected byte[] KeyValue;
public virtual byte[] Key { get; set; }
protected KeyedHashAlgorithm();
public new static KeyedHashAlgorithm Create();
public new static KeyedHashAlgorithm Create(string algName);
}
}