MemoryProtectionScope Enumerazione

Definizione

Specifica l'ambito di protezione della memoria da applicare mediante il metodo Protect(Byte[], MemoryProtectionScope).

public enum class MemoryProtectionScope
public enum MemoryProtectionScope
type MemoryProtectionScope = 
Public Enum MemoryProtectionScope
Ereditarietà
MemoryProtectionScope

Campi

CrossProcess 1

Tutto il codice presente in qualsiasi processo è in grado di rimuovere la protezione della memoria impostata mediante il metodo Protect(Byte[], MemoryProtectionScope).

SameLogon 2

Solo il codice eseguito nello stesso contesto utente per chiamare il metodo Protect(Byte[], MemoryProtectionScope) è in grado di rimuovere la protezione della memoria.

SameProcess 0

Solo il codice eseguito nello stesso contesto utente per chiamare il metodo Protect(Byte[], MemoryProtectionScope) è in grado di rimuovere la protezione della memoria.

Esempio

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

#using <System.Security.dll>

using namespace System;
using namespace System::Security::Cryptography;

int main()
{
   
   // Create the original data to be encrypted (The data length should be a multiple of 16).
   array<Byte>^secret = {1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4};
   
   // Encrypt the data in memory. The result is stored in the same array as the original data.
   ProtectedMemory::Protect( secret, MemoryProtectionScope::SameLogon );
   
   // Decrypt the data in memory and store in the original array.
   ProtectedMemory::Unprotect( secret, MemoryProtectionScope::SameLogon );
}
using System;
using System.Security.Cryptography;

public class MemoryProtectionSample
{

    public static void Main()
    {
        // Create the original data to be encrypted (The data length should be a multiple of 16).
        byte [] secret = { 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4 };

        // Encrypt the data in memory. The result is stored in the same array as the original data.
        ProtectedMemory.Protect( secret, MemoryProtectionScope.SameLogon );

        // Decrypt the data in memory and store in the original array.
        ProtectedMemory.Unprotect( secret, MemoryProtectionScope.SameLogon );
    }
}
Imports System.Security.Cryptography

Public Class MemoryProtectionSample

    Public Shared Sub Main()
        ' Create the original data to be encrypted (The data length should be a multiple of 16).
        Dim secret As Byte() = {1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4}

        ' Encrypt the data in memory. The result is stored in the same array as the original data.
        ProtectedMemory.Protect(secret, MemoryProtectionScope.SameLogon)

        ' Decrypt the data in memory and store in the original array.
        ProtectedMemory.Unprotect(secret, MemoryProtectionScope.SameLogon)

    End Sub
End Class

Commenti

Questa enumerazione viene usata con i Protect metodi e Unprotect per proteggere i dati in memoria.

Si applica a