IV Property
The initialization vector (IV).
Syntax
[VB.NET] Public Property IV As String Public Property IVB As Byte()
[C#] public string IV {get; set;} public byte[] IVB {get; set;}
Remarks
This property specifies the initialization vector (IV). By default this property is empty and the component will automatically generate a new IV value if KeyPassword or Key is set before Encrypt or EncryptBlock is called. The size of the IV property must be equal to the BlockSize divided by 8.
Default Value
""