DataProtectionScope Enumerazione

Definizione

Specifica l'ambito di protezione dei dati da applicare mediante il metodo Protect(Byte[], Byte[], DataProtectionScope).

C#
public enum DataProtectionScope
Ereditarietà
DataProtectionScope

Campi

Nome Valore Descrizione
CurrentUser 0

I dati protetti sono associati all'utente corrente. Solo i thread in esecuzione nel contesto utente corrente possono rimuovere la protezione dei dati.

LocalMachine 1

I dati protetti sono associati al contesto computer. Qualsiasi processo in esecuzione sul computer è in grado di rimuovere la protezione dei dati. Questo valore di enumerazione viene in genere utilizzato in applicazioni specifiche del server eseguite su un server a cui gli utenti non attendibili non possono accedere.

Esempio

Nell'esempio di codice seguente viene illustrato come usare la protezione dei dati.

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

public class DataProtectionSample
{
    // Create byte array for additional entropy when using Protect method.
    static byte [] s_additionalEntropy = { 9, 8, 7, 6, 5 };

    public static void Main()
    {
        // Create a simple byte array containing data to be encrypted.
        byte [] secret = { 0, 1, 2, 3, 4, 1, 2, 3, 4 };

        //Encrypt the data.
        byte [] encryptedSecret = Protect( secret );
        Console.WriteLine("The encrypted byte array is:");
        PrintValues(encryptedSecret);

        // Decrypt the data and store in a byte array.
        byte [] originalData = Unprotect( encryptedSecret );
        Console.WriteLine("{0}The original data is:", Environment.NewLine);
        PrintValues(originalData);
    }

    public static byte [] Protect( byte [] data )
    {
        try
        {
            // Encrypt the data using DataProtectionScope.CurrentUser. The result can be decrypted
            // only by the same current user.
            return ProtectedData.Protect( data, s_additionalEntropy, DataProtectionScope.CurrentUser );
        }
        catch (CryptographicException e)
        {
            Console.WriteLine("Data was not encrypted. An error occurred.");
            Console.WriteLine(e.ToString());
            return null;
        }
    }

    public static byte [] Unprotect( byte [] data )
    {
        try
        {
            //Decrypt the data using DataProtectionScope.CurrentUser.
            return ProtectedData.Unprotect( data, s_additionalEntropy, DataProtectionScope.CurrentUser );
        }
        catch (CryptographicException e)
        {
            Console.WriteLine("Data was not decrypted. An error occurred.");
            Console.WriteLine(e.ToString());
            return null;
        }
    }

    public static void PrintValues( Byte[] myArr )
    {
        foreach ( Byte i in myArr )
        {
            Console.Write( "\t{0}", i );
        }
        Console.WriteLine();
    }
}

Commenti

Questa enumerazione viene usata con i metodi e Unprotect per proteggere i Protect dati tramite la crittografia.

Attenzione Il valore di enumerazione LocalMachine consente a più account di rimuovere la protezione dei dati. Usare questo valore solo quando si considera attendibile ogni account in un computer. Per la maggior parte delle situazioni, è consigliabile usare il valore CurrentUser.

Si applica a

Prodotto Versioni
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 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 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10