e-CryptIt Engine Xojo Plugin |
|
AES_CBC.Constructor Constructor
Constructor that takes key as String and iv as String.

Constructor(
key
as String,
iv
as String)
Parameters
- key
- The encryption key to encrypt with.
- iv
- The iv may be initialised with anything, but the recipient needs to know what it was initialised with, or it won't be able to decrypt. Some programs and protocols simplify this, like SSH, where iv is simply initialised to zero. If this parameter is skipped then the iv will be "0000000000000000". The IV should always be a 16 character value.
Remarks
See Also
AES_CBC Class