SymmetricSecurityKey.GetEncryptionTransform(String, Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets a transform that encrypts XML using the specified cryptographic algorithm.
public:
abstract System::Security::Cryptography::ICryptoTransform ^ GetEncryptionTransform(System::String ^ algorithm, cli::array <System::Byte> ^ iv);
public abstract System.Security.Cryptography.ICryptoTransform GetEncryptionTransform (string algorithm, byte[] iv);
abstract member GetEncryptionTransform : string * byte[] -> System.Security.Cryptography.ICryptoTransform
Public MustOverride Function GetEncryptionTransform (algorithm As String, iv As Byte()) As ICryptoTransform
Parameters
- algorithm
- String
A cryptographic algorithm that encrypts XML.
- iv
- Byte[]
An array of Byte that contains the initialization vector (IV
) for the specified algorithm.
Returns
An ICryptoTransform that represents the encryption transform.
Remarks
Use the fields that represent decryption algorithms in the SecurityAlgorithms class to specify the algorithm.