AES-OFB block encryption/decryption.
int32_t aes_sync_ofb_crypt( struct aes_sync_descriptor * descr, const uint8_t * input, uint8_t * output, uint32_t length, uint8_t * iv, uint32_t * iv_ofst )
Type: struct aes_sync_descriptor Struct *
The AES descriptor
Type: const uint8_t *
Buffer holding the input data
Type: uint8_t *
Buffer holding the output data
Type: uint32_t
Byte length of the input data
Type: uint8_t *
Initialization Vector (updated after use)
Type: uint32_t *
Offset in IV (updated after use)
Type: int32_t
ERR_NONE if successful