SymmetricSecurityKey.GetDecryptionTransform(String, Byte[]) Method

Definition

When overridden in a derived class, gets a transform that decrypts cipher text using the specified cryptographic algorithm.

public:
 abstract System::Security::Cryptography::ICryptoTransform ^ GetDecryptionTransform(System::String ^ algorithm, cli::array <System::Byte> ^ iv);
public abstract System.Security.Cryptography.ICryptoTransform GetDecryptionTransform (string algorithm, byte[] iv);
abstract member GetDecryptionTransform : string * byte[] -> System.Security.Cryptography.ICryptoTransform
Public MustOverride Function GetDecryptionTransform (algorithm As String, iv As Byte()) As ICryptoTransform

Parameters

algorithm
String

A cryptographic algorithm that decrypts cipher text, such as encrypted XML.

iv
Byte[]

An array of Byte that contains the initialization vector (IV) for the specified algorithm.

Returns

An ICryptoTransform that represents the decryption transform.

Remarks

Use the fields that represent decryption algorithms in the SecurityAlgorithms class to specify the algorithm.

Applies to