ProtectedMemory.Unprotect(Byte[], MemoryProtectionScope) Method

Definition

Unprotects data in memory that was protected using the Protect(Byte[], MemoryProtectionScope) method.

C#
public static void Unprotect(byte[] encryptedData, System.Security.Cryptography.MemoryProtectionScope scope);

Parameters

encryptedData
Byte[]

The byte array in memory to unencrypt.

scope
MemoryProtectionScope

One of the enumeration values that specifies the scope of memory protection.

Exceptions

The operating system does not support this method. This method can be used only with the Windows 2000 or later operating systems.

encryptedData is null.

encryptedData is empty.

-or-

This call was not implemented.

-or-

NTSTATUS contains an error.

Examples

The following example shows how to use data protection.

C#
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 );
    }
}

Remarks

This method can be used to unencrypt data in memory that was encrypted using the Protect method.

Support for this method is available in the Windows XP and later operating systems.

Applies to

Tuote Versiot
.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