When overridden in a derived class, creates a symmetric decryptor object with the specified Key property and initialization vector (IV).
Namespace: LLCryptoLib.CryptoAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public override ICryptoTransform CreateDecryptor(
byte[] rgbKey,
byte[] rgbIV
) |
Visual Basic |
---|
Public Overrides Function CreateDecryptor ( _
rgbKey As Byte(), _
rgbIV As Byte() _
) As ICryptoTransform |
Visual C++ |
---|
public:
virtual ICryptoTransform^ CreateDecryptor(
array<unsigned char>^ rgbKey,
array<unsigned char>^ rgbIV
) override |
Parameters
- rgbKey
- Type: array<System..::..Byte>[]()[][]
The secret key to use for the symmetric algorithm.
- rgbIV
- Type: array<System..::..Byte>[]()[][]
The initialization vector to use for the symmetric algorithm.
Return Value
A symmetric decryptor object.
See Also