System.Security.Cryptography.DES
namespace System.Security.Cryptography
{
public abstract class DES : SymmetricAlgorithm
{
protected DES();
public new static DES Create();
public new static DES Create(string algName);
public static bool IsSemiWeakKey(byte[] rgbKey);
public static bool IsWeakKey(byte[] rgbKey);
}
}