Mentalis.org Security Library documentation

RijndaelCryptoServiceProvider.CreateDecryptor Method (Byte[], Byte[])

Creates a symmetric Rijndael decryptor object with the specified Key and initialization vector (IV).

[Visual Basic]
Overrides Overloads Public Function CreateDecryptor( _
   ByVal rgbKey As Byte(), _
   ByVal rgbIV As Byte() _
) As ICryptoTransform
[C#]
public override ICryptoTransform CreateDecryptor(
   byte[] rgbKey,
   byte[] rgbIV
);

Parameters

rgbKey
The secret key to be used for the symmetric algorithm.
rgbIV
The IV to be used for the symmetric algorithm.

Return Value

A symmetric Rijndael decryptor object.

Remarks

This method decrypts an encrypted message created using the CreateEncryptor overload with the same signature.

See Also

RijndaelCryptoServiceProvider Class | RijndaelCryptoServiceProvider Members | Org.Mentalis.Security.Cryptography Namespace | RijndaelCryptoServiceProvider.CreateDecryptor Overload List