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?