CryptoConfig Class
Accesses the cryptography configuration information.
Assembly: mscorlib (in mscorlib.dll)
The following table shows the simple names recognized by this class and the default algorithm implementations to which they map. Alternatively, you can map other implementations to these names, as described in Mapping Algorithm Names to Cryptography Classes.
.
|
Simple Name |
Algorithm Implementation |
|---|---|
|
SHA |
|
|
SHA1 |
|
|
System.Security.Cryptography.SHA1 |
|
|
System.Security.Cryptography.HashAlgorithm |
|
|
MD5 |
|
|
System.Security.Cryptography.MD5 |
|
|
SHA256 |
|
|
SHA-256 |
|
|
System.Security.Cryptography.SHA256 |
|
|
SHA384 |
|
|
SHA-384 |
|
|
System.Security.Cryptography.SHA384 |
|
|
SHA512 |
|
|
SHA-512 |
|
|
System.Security.Cryptography.SHA512 |
|
|
RSA |
|
|
System.Security.Cryptography.RSA |
|
|
System.Security.Cryptography.AsymmetricAlgorithm |
|
|
DSA |
|
|
System.Security.Cryptography.DSA |
|
|
DES |
|
|
System.Security.Cryptography.DES |
|
|
3DES |
|
|
TripleDES |
|
|
Triple DES |
|
|
System.Security.Cryptography.TripleDES |
|
|
System.Security.Cryptography.SymmetricAlgorithm |
|
|
RC2 |
|
|
System.Security.Cryptography.RC2 |
|
|
Rijndael |
|
|
System.Security.Cryptography.Rijndael |
The following code example demonstrates how to use members of the CryptoConfig class.
using System; using System.Security.Cryptography; class Members { static void Main(string[] args) { // Create a CryptoConfig object to store configuration information. CryptoConfig cryptoConfig = new CryptoConfig(); // Retrieve the class path for CryptoConfig. string classDescription = cryptoConfig.ToString(); // Create a new SHA1 provider. SHA1CryptoServiceProvider SHA1alg = (SHA1CryptoServiceProvider)CryptoConfig.CreateFromName("SHA1"); // Create an RSAParameters with the TestContainer key container. CspParameters parameters = new CspParameters(); parameters.KeyContainerName = "TestContainer"; Object[] argsArray = new Object[] {parameters}; // Instantiate the RSA provider instance accessing the TestContainer // key container. RSACryptoServiceProvider rsaProvider = (RSACryptoServiceProvider) CryptoConfig.CreateFromName("RSA",argsArray); // Use the MapNameToOID method to get an object identifier // (OID) from the string name of the SHA1 algorithm. string sha1Oid = CryptoConfig.MapNameToOID("SHA1"); // Encode the specified object identifier. byte[] encodedMessage = CryptoConfig.EncodeOID(sha1Oid); // Display the results to the console. Console.WriteLine("** " + classDescription + " **"); Console.WriteLine("Created an RSA provider " + "with a KeyContainerName called " + parameters.KeyContainerName + "."); Console.WriteLine("Object identifier from the SHA1 name:" + sha1Oid); Console.WriteLine("The object identifier encoded: " + System.Text.Encoding.ASCII.GetString(encodedMessage)); Console.WriteLine("This sample completed successfully; " + "press Enter to exit."); Console.ReadLine(); } } // // This sample produces the following output: // // ** System.Security.Cryptography.CryptoConfig ** // Created an RSA provider with a KeyContainerName called TestContainer. // Object identifier from the SHA1 name:1.3.14.3.2.26 // The object identifier encoded: HH*((*H9 // This sample completed successfully; press Enter to exit.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.