ProtectedData.Unprotect Metod

Definition

Överlagringar

Name Description
Unprotect(Byte[], Byte[], DataProtectionScope)

Dekrypterar data i en angiven bytematris och returnerar en bytematris som innehåller de dekrypterade data.

Unprotect(ReadOnlySpan<Byte>, DataProtectionScope, ReadOnlySpan<Byte>)

Dekrypterar data i en angiven bytematris och returnerar en bytematris som innehåller de dekrypterade data.

Unprotect(ReadOnlySpan<Byte>, DataProtectionScope, Span<Byte>, ReadOnlySpan<Byte>)

Dekrypterar data i en angiven buffert och skriver de dekrypterade data till en målbuffert.

Unprotect(Byte[], Byte[], DataProtectionScope)

Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs

Dekrypterar data i en angiven bytematris och returnerar en bytematris som innehåller de dekrypterade data.

public:
 static cli::array <System::Byte> ^ Unprotect(cli::array <System::Byte> ^ encryptedData, cli::array <System::Byte> ^ optionalEntropy, System::Security::Cryptography::DataProtectionScope scope);
public static byte[] Unprotect(byte[] encryptedData, byte[]? optionalEntropy, System.Security.Cryptography.DataProtectionScope scope);
public static byte[] Unprotect(byte[] encryptedData, byte[] optionalEntropy, System.Security.Cryptography.DataProtectionScope scope);
static member Unprotect : byte[] * byte[] * System.Security.Cryptography.DataProtectionScope -> byte[]
Public Shared Function Unprotect (encryptedData As Byte(), optionalEntropy As Byte(), scope As DataProtectionScope) As Byte()

Parametrar

encryptedData
Byte[]

En bytematris som innehåller data som krypterats med hjälp av Protect(Byte[], Byte[], DataProtectionScope) metoden.

optionalEntropy
Byte[]

En valfri ytterligare bytematris som användes för att kryptera data, eller null om den ytterligare bytematrisen inte användes.

scope
DataProtectionScope

Ett av uppräkningsvärdena som anger omfånget för dataskyddet som användes för att kryptera data.

Returer

Byte[]

En bytematris som representerar de dekrypterade data.

Undantag

Parametern encryptedData är null.

Dekrypteringen misslyckades.

Operativsystemet stöder inte den här metoden.

Slut på minne.

endast .NET Core och .NET 5+ : Anrop till metoden Unprotect stöds endast på Windows operativsystem.

Exempel

I följande kodexempel visas hur du använder dataskydd.

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();
    }
}
Imports System.Security.Cryptography



Public Class DataProtectionSample
    ' Create byte array for additional entropy when using Protect method.
    Private Shared s_additionalEntropy As Byte() = {9, 8, 7, 6, 5}


    Public Shared Sub Main()
        ' Create a simple byte array containing data to be encrypted.
        Dim secret As Byte() = {0, 1, 2, 3, 4, 1, 2, 3, 4}

        'Encrypt the data.
        Dim encryptedSecret As Byte() = Protect(secret)
        Console.WriteLine("The encrypted byte array is:")
        PrintValues(encryptedSecret)

        ' Decrypt the data and store in a byte array.
        Dim originalData As Byte() = Unprotect(encryptedSecret)
        Console.WriteLine("{0}The original data is:", Environment.NewLine)
        PrintValues(originalData)

    End Sub


    Public Shared Function Protect(ByVal data() As Byte) As Byte()
        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 e As CryptographicException
            Console.WriteLine("Data was not encrypted. An error occurred.")
            Console.WriteLine(e.ToString())
            Return Nothing
        End Try

    End Function


    Public Shared Function Unprotect(ByVal data() As Byte) As Byte()
        Try
            'Decrypt the data using DataProtectionScope.CurrentUser.
            Return ProtectedData.Unprotect(data, s_additionalEntropy, DataProtectionScope.CurrentUser)
        Catch e As CryptographicException
            Console.WriteLine("Data was not decrypted. An error occurred.")
            Console.WriteLine(e.ToString())
            Return Nothing
        End Try

    End Function


    Public Shared Sub PrintValues(ByVal myArr() As [Byte])
        Dim i As [Byte]
        For Each i In myArr
            Console.Write(vbTab + "{0}", i)
        Next i
        Console.WriteLine()

    End Sub
End Class

Kommentarer

Den här metoden kan användas för att ta bort skyddet av data som krypterats med hjälp av Protect metoden. Om parametern optionalEntropy användes under krypteringen måste den anges för att okryptera data.

Note

Om du använder den här metoden under personifieringen kan du få följande fel: "Nyckeln är inte giltig för användning i angivet tillstånd". Om du vill förhindra det här felet läser du in profilen för den användare som du vill personifiera innan du anropar metoden.

Gäller för

Unprotect(ReadOnlySpan<Byte>, DataProtectionScope, ReadOnlySpan<Byte>)

Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs

Dekrypterar data i en angiven bytematris och returnerar en bytematris som innehåller de dekrypterade data.

public static byte[] Unprotect(ReadOnlySpan<byte> encryptedData, System.Security.Cryptography.DataProtectionScope scope, ReadOnlySpan<byte> optionalEntropy = default);
static member Unprotect : ReadOnlySpan<byte> * System.Security.Cryptography.DataProtectionScope * ReadOnlySpan<byte> -> byte[]
Public Shared Function Unprotect (encryptedData As ReadOnlySpan(Of Byte), scope As DataProtectionScope, Optional optionalEntropy As ReadOnlySpan(Of Byte) = Nothing) As Byte()

Parametrar

encryptedData
ReadOnlySpan<Byte>

En buffert som innehåller data att dekryptera.

scope
DataProtectionScope

Ett av uppräkningsvärdena som anger krypteringens omfång.

optionalEntropy
ReadOnlySpan<Byte>

En valfri ytterligare buffert som används för att öka krypteringens komplexitet eller tom utan ytterligare komplexitet.

Returer

Byte[]

En bytematris som representerar krypterade data.

Undantag

Krypteringen misslyckades.

Operativsystemet stöder inte den här metoden.

Minnet tog slut när data dekrypterades.

Operativsystemet är inte Windows.

Gäller för

Unprotect(ReadOnlySpan<Byte>, DataProtectionScope, Span<Byte>, ReadOnlySpan<Byte>)

Källa:
ProtectedData.cs
Källa:
ProtectedData.cs
Källa:
ProtectedData.cs

Dekrypterar data i en angiven buffert och skriver de dekrypterade data till en målbuffert.

public static int Unprotect(ReadOnlySpan<byte> encryptedData, System.Security.Cryptography.DataProtectionScope scope, Span<byte> destination, ReadOnlySpan<byte> optionalEntropy = default);
static member Unprotect : ReadOnlySpan<byte> * System.Security.Cryptography.DataProtectionScope * Span<byte> * ReadOnlySpan<byte> -> int
Public Shared Function Unprotect (encryptedData As ReadOnlySpan(Of Byte), scope As DataProtectionScope, destination As Span(Of Byte), Optional optionalEntropy As ReadOnlySpan(Of Byte) = Nothing) As Integer

Parametrar

encryptedData
ReadOnlySpan<Byte>

En buffert som innehåller data att dekryptera.

scope
DataProtectionScope

Ett av uppräkningsvärdena som anger krypteringens omfång.

destination
Span<Byte>

Bufferten för att ta emot de dekrypterade data.

optionalEntropy
ReadOnlySpan<Byte>

En valfri ytterligare buffert som används för att öka krypteringens komplexitet eller tom utan ytterligare komplexitet.

Returer

Det totala antalet byte som skrivits till destination

Undantag

Bufferten i destination är för liten för att lagra de dekrypterade data.

Krypteringen misslyckades.

Operativsystemet stöder inte den här metoden.

Minnet tog slut när data krypteras.

Operativsystemet är inte Windows.

Gäller för