工具与软件:
请告知如何在 CC1310上使用 AES CTR 模式、该模式似乎没有驱动程序库实现。 因此、AES CTR 功能需要通过 基于 ROM 的加密功能进行调用。
AES_CTR_EncryptData (EncryptedData、sizeof (inputdata)、aesKey、nonce、iv);
使用此函数时、它会在运行时进入异常处理程序。
谢谢。
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.
尊敬的 Manish:
我建议使用 AESCTR 驱动程序和 AESCTR_oneStepEncrypt API。 https://dev.ti.com/tirex/explore/content/simplelink_cc13x0_sdk_4_20_01_03/docs/tidrivers/doxygen/html/_a_e_s_c_t_r_8h.html
我不确定基于 ROM 的加密功能的含义。 CC1310具有多个硬件加速器、如果您使用我们的驱动程序、您将会使用这些加速器。 某些 RTOS 和驱动程序代码存储在 ROM 中、但如果需要调试驱动程序、则可以将其导入工作区、加载 ROM 符号、甚至从闪存运行代码。
谢谢、
Marie H.