System.Security.Cryptography.KeySizes
namespace System.Security.Cryptography
{
public sealed class KeySizes
{
public int MaxSize { get; }
public int MinSize { get; }
public int SkipSize { get; }
public KeySizes(int minSize, int maxSize, int skipSize);
}
}