System.Security.Cryptography.KeyedHashAlgorithm
Represents the abstract class from which all implementations of keyed
hash algorithms must derive.
namespace System.Security.Cryptography
{
public abstract class KeyedHashAlgorithm : HashAlgorithm
{
public virtual byte[] Key { get; set; }
protected KeyedHashAlgorithm();
}
}