This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LAUNCHCC3235MOD: aes use from cc3200

Part Number: LAUNCHCC3235MOD
Other Parts Discussed in Thread: CC3200, SYSCONFIG

How would I adapt some cc3200 code that looks like:

//AESCrypt(uiConfig,uiKeySize,puiKey1,puiData,puiResult,uiDataLength,uiIV); 
AESCryptuc(uiConfig,uiKeySize,puiKey1,&(acmsg[iuse][0]),&(acmsg[iuse2d][0]),uiDataLength,uiIV);
//UART_PRINT("\r\n Decryption done");

//...
AESCryptuc(uiConfig,uiKeySize,puiKey1,&(acmsg[iuse][0]),&(acmsg[iuse2d][0]),uiDataLength,uiIV);
//UART_PRINT("\r\n Encryption done");
 

To the CC3235MOD? Would such be as simple as '#include "aes.h"' and
'#include "aes_vector.h"' and using properly sized buffer and keys?