RSACryptoServiceProvider.Decrypt Metoda

Definice

Dešifruje data, která byla dříve zašifrovaná.

Přetížení

Decrypt(Byte[], Boolean)

Dešifruje data pomocí RSA algoritmu.

Decrypt(Byte[], RSAEncryptionPadding)

Dešifruje data, která byla dříve zašifrována RSA pomocí algoritmu, pomocí zadaného odsazení.

Decrypt(Byte[], Boolean)

Zdroj:
RSACryptoServiceProvider.Unix.cs
Zdroj:
RSACryptoServiceProvider.Unix.cs
Zdroj:
RSACryptoServiceProvider.Unix.cs

Dešifruje data pomocí RSA algoritmu.

public byte[] Decrypt(byte[] rgb, bool fOAEP);

Parametry

rgb
Byte[]

Data, která se mají dešifrovat.

fOAEP
Boolean

true provést přímé RSA dešifrování pomocí odsazení OAEP; false jinak použít odsazení PKCS#1 v1.5.

Návraty

Byte[]

Dešifrovaná data, což je původní prostý text před šifrováním.

Výjimky

Zprostředkovatele kryptografických služeb (CSP) nelze získat.

-nebo-

Parametr fOAEP je true a délka parametru rgb je větší než KeySize.

-nebo-

Klíč neodpovídá šifrovaným datům. Formulace výjimky však nemusí být přesná. Může například napsat Not enough storage is available to process this command.

rgb je null.

Příklady

Následující příklad kódu šifruje a dešifruje data.

V tomto příkladu se ASCIIEncoding používá třída , UnicodeEncoding ale třída může být vhodnější pro operace s velkými objemy dat. Šifrovanou hodnotu lze uložit jako nvarchar datový typ v Microsoft SQL Serveru.

using System;
using System.Security.Cryptography;
using System.Text;

class RSACSPSample
{
    static void Main()
    {
        try
        {
            //Create a UnicodeEncoder to convert between byte array and string.
            ASCIIEncoding ByteConverter = new ASCIIEncoding();

            string dataString = "Data to Encrypt";

            //Create byte arrays to hold original, encrypted, and decrypted data.
            byte[] dataToEncrypt = ByteConverter.GetBytes(dataString);
            byte[] encryptedData;
            byte[] decryptedData;

            //Create a new instance of the RSACryptoServiceProvider class
            // and automatically create a new key-pair.
            RSACryptoServiceProvider RSAalg = new RSACryptoServiceProvider();

            //Display the origianl data to the console.
            Console.WriteLine("Original Data: {0}", dataString);

            //Encrypt the byte array and specify no OAEP padding.
            //OAEP padding is only available on Microsoft Windows XP or
            //later.
            encryptedData = RSAalg.Encrypt(dataToEncrypt, false);

            //Display the encrypted data to the console.
            Console.WriteLine("Encrypted Data: {0}", ByteConverter.GetString(encryptedData));

            //Pass the data to ENCRYPT and boolean flag specifying
            //no OAEP padding.
            decryptedData = RSAalg.Decrypt(encryptedData, false);

            //Display the decrypted plaintext to the console.
            Console.WriteLine("Decrypted plaintext: {0}", ByteConverter.GetString(decryptedData));
        }
        catch(CryptographicException e)
        {
            //Catch this exception in case the encryption did
            //not succeed.
            Console.WriteLine(e.Message);
        }
    }
}

Poznámky

Pomocí Encrypt této metody zašifrujte data pro dešifrování.

Viz také

Platí pro

.NET 10 a další verze
Produkt Verze
.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

Decrypt(Byte[], RSAEncryptionPadding)

Zdroj:
RSACryptoServiceProvider.Unix.cs
Zdroj:
RSACryptoServiceProvider.Unix.cs
Zdroj:
RSACryptoServiceProvider.Unix.cs

Dešifruje data, která byla dříve zašifrována RSA pomocí algoritmu, pomocí zadaného odsazení.

public override byte[] Decrypt(byte[] data, System.Security.Cryptography.RSAEncryptionPadding padding);

Parametry

data
Byte[]

Data k dešifrování.

padding
RSAEncryptionPadding

Odsazení.

Návraty

Byte[]

Dešifrovaná data.

Výjimky

data je null.

-nebo-

padding je null.

Režim odsazení není podporován.

Poznámky

padding musí být buď , RSAEncryptionPadding.Pkcs1 nebo RSAEncryptionPadding.OaepSHA1.

Platí pro

.NET 10 a další verze
Produkt Verze
.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 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