This documentation is archived and is not being maintained.
KeySizes Class
Visual Studio 2010
Determines the set of valid key sizes for the symmetric cryptographic algorithms.
Assembly: mscorlib (in mscorlib.dll)
The KeySizes type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The following example shows the use of members of the KeySizes class.
using namespace System; using namespace System::Security::Cryptography; namespace CryptographySample { ref class KeySizesMembers { public: static void Work() { // Initializes a new instance of the KeySizes class // with the specified key values. int minSize = 64; int maxSize = 1024; int skipSize = 64; KeySizes^ keySizes = gcnew KeySizes(minSize, maxSize, skipSize); // Show the values of the keys. ShowKeys(gcnew array<KeySizes^>(1) {keySizes}, "Custom Keys"); // Create a new symmetric algorithm and display its // key values. SymmetricAlgorithm^ symAlg = SymmetricAlgorithm::Create(); ShowKeys(symAlg->LegalKeySizes, symAlg->ToString()); Console::WriteLine("rijn.blocksize:{0}", symAlg->BlockSize); // Create a new RSA algorithm and display its key values. RSACryptoServiceProvider^ rsaCSP = gcnew RSACryptoServiceProvider(384); ShowKeys(rsaCSP->LegalKeySizes, rsaCSP->ToString()); Console::WriteLine("RSACryptoServiceProvider KeySize =" " {0}", rsaCSP->KeySize); Console::WriteLine("This sample completed successfully; " "press Enter to exit."); Console::ReadLine(); } private: // Display specified KeySize properties to the console. static void ShowKeys(array <KeySizes^>^ keySizes, String^ objectName) { // Retrieve the first KeySizes in the array. KeySizes^ firstKeySize = keySizes[0]; // Retrieve the minimum key size in bits. int minKeySize = firstKeySize->MinSize; // Retrieve the maximum key size in bits. int maxKeySize = firstKeySize->MaxSize; // Retrieve the interval between valid key size in bits. int skipKeySize = firstKeySize->SkipSize; Console::Write("\n KeySizes retrieved from the "); Console::WriteLine("{0} object.", objectName); Console::WriteLine("Minimum key size bits: {0}", minKeySize); Console::WriteLine("Maximum key size bits: {0}", maxKeySize); Console::WriteLine("Interval between key size bits: {0}", skipKeySize); } }; } using namespace CryptographySample; int main() { KeySizesMembers::Work(); } // // This sample produces the following output: // // KeySizes retrieved from the Custom Keys object. // Minimum key size bits: 64 // Maximum key size bits: 1024 // Interval between key size bits: 64 // // KeySizes retrieved from the // System.Security.Cryptography.RijndaelManaged object. // Minimum key size bits: 128 // Maximum key size bits: 256 // Interval between key size bits: 64 // rijn.blocksize:128 // // KeySizes retrieved from the // System.Security.Cryptography.RSACryptoServiceProvider object. // Minimum key size bits: 384 // Maximum key size bits: 16384 // Interval between key size bits: 8 // RSACryptoServiceProvider KeySize = 384 // This sample completed successfully; press Enter to exit.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show:
