KeySizes Constructor (Int32, Int32, Int32)

 

Initializes a new instance of the KeySizes class with the specified key values.

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public:
KeySizes(
	int minSize,
	int maxSize,
	int skipSize
)

Parameters

minSize
Type: System::Int32

The minimum valid key size.

maxSize
Type: System::Int32

The maximum valid key size.

skipSize
Type: System::Int32

The interval between valid key sizes.

The following code shows the use of the KeySizes constructor. This code example is part of a larger example provided for the KeySizes class.

int minSize = 64;
int maxSize = 1024;
int skipSize = 64;
KeySizes^ keySizes = 
    gcnew KeySizes(minSize, maxSize, skipSize);

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: