CspParameters.KeyContainerName Pole

Definicja

Reprezentuje nazwę kontenera klucza dla elementu CspParameters.

C#
public string? KeyContainerName;
C#
public string KeyContainerName;

Wartość pola

Przykłady

Poniższy przykład kodu tworzy kontener kluczy przy użyciu CspParameters klasy i zapisuje klucz w kontenerze.

C#
using System;
using System.IO;
using System.Security.Cryptography;

public class StoreKey
{
    public static void Main()
    {
        // creates the CspParameters object and sets the key container name used to store the RSA key pair
        CspParameters cp = new CspParameters();
        cp.KeyContainerName = "MyKeyContainerName";

        // instantiates the rsa instance accessing the key container MyKeyContainerName
        RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(cp);
        // add the below line to delete the key entry in MyKeyContainerName
        // rsa.PersistKeyInCsp = false;

        //writes out the current key pair used in the rsa instance
        Console.WriteLine("Key is : \n" + rsa.ToXmlString(true));
    }
}

Uwagi

KeyContainerName Użyj pola, aby określić nazwę kontenera kluczy. Nazwę kontenera można użyć do pobrania utrwalonego klucza w tym kontenerze.

Aby uzyskać więcej informacji na temat tworzenia kontenerów kluczy, zobacz Jak przechowywać klucze asymetryczne w kontenerze kluczy.

Dotyczy

Produkt Wersje
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

Zobacz też