Hi.
I'm working with an NRF5340DK using NRF Connect SDK in a project where I need to decrypt an input text with a previously adquired key usign AES128 CTR, but I've been looking for some information for hours and I still cannot manage to make it work with any of the given libraries, as the docs are either deprecated or lack information. I already tried to replicate the PSA given sample, which doesn't work for me as the key is not accesible to the user, MBEDTLS API, which doesn't gives the desired output, and Oberon library, which I find impossible to implement as I can't find the necessary headers where all the functions are declared. Last API I was trying to implement was this one: https://infocenter.nordicsemi.com/index.jsp?topic=%2Fsdk_nrf5_v17.1.0%2Fgroup__nrf__crypto__aes.html
Is there any way I can solve this?
Thanks.
EDIT: I finally managed to make it work by including <ocrypto_aes_ctr.h> (which the environment still doesn't seems to find, but builds correctly anyway).