System.Security.Cryptography.RC2
namespace System.Security.Cryptography
{
public abstract class RC2 : SymmetricAlgorithm
{
protected int EffectiveKeySizeValue;
public virtual int EffectiveKeySize { get; set; }
protected RC2();
public new static RC2 Create();
public new static RC2 Create(string AlgName);
}
}