Crypt
Implement AES encryption/decryption with cipher-block chaining.
Inputs:
0) Scalar reference for data to encrypt/decrypt.
1) Encryption key string (must have length 16, 24 or 32).
2) [optional] Encrypt flag (false to decrypt).
3) [optional] Flag to avoid removing padding after decrypting, or to avoid adding 16 bytes of padding
before encrypting when data length is already a multiple of 16 bytes.
Returns:
On success, the return value is undefined and the data is encrypted or decrypted as specified.
Otherwise returns an error string and the data is left in an indeterminate state.
Notes:
The length of the encryption key dictates the AES mode, with lengths of 16, 24 and 32 bytes resulting
in AES-128, AES-192 and AES-256.
When encrypting, the input data may be any length and will be padded to an even 16-byte block size
using the specified padding technique. If the encrypt flag has length 16, it is used as the
initialization vector for the cipher-block chaining, otherwise a random IV is generated. Upon
successful return the data will be encrypted, with the first 16 bytes of the data being the CBC IV.
When decrypting, the input data begins with the 16-byte CBC initialization vector.