mscorlib(4.0.0.0) API with additions
KeySizes.cs
2 
4 {
6  [ComVisible(true)]
7  public sealed class KeySizes
8  {
9  private int m_minSize;
10 
11  private int m_maxSize;
12 
13  private int m_skipSize;
14 
17  public int MinSize => m_minSize;
18 
21  public int MaxSize => m_maxSize;
22 
25  public int SkipSize => m_skipSize;
26 
31  public KeySizes(int minSize, int maxSize, int skipSize)
32  {
33  m_minSize = minSize;
34  m_maxSize = maxSize;
35  m_skipSize = skipSize;
36  }
37  }
38 }
KeySizes(int minSize, int maxSize, int skipSize)
Initializes a new instance of the T:System.Security.Cryptography.KeySizes class with the specified ke...
Definition: KeySizes.cs:31
int MinSize
Specifies the minimum key size in bits.
Definition: KeySizes.cs:17
Definition: __Canon.cs:3
int MaxSize
Specifies the maximum key size in bits.
Definition: KeySizes.cs:21
int SkipSize
Specifies the interval between valid key sizes in bits.
Definition: KeySizes.cs:25
Determines the set of valid key sizes for the symmetric cryptographic algorithms.
Definition: KeySizes.cs:7