SDK: 15.3.0
Sample: aes_ctr, ecdh
Device: EYSHJNZWZ (nRF52832)
I'm considering using the "Cryptography library - nrf_crypto".
Therefore, I am looking at the above sample.
These samples use the following API as an example.
[Sample : aes_ctr]
・nrf_crypto_aes_update
・nrf_crypto_aes_finalize
・nrf_crypto_aes_crypt
[Sample : ecdh]
・nrf_crypto_ecc_public_key_from_raw
・nrf_crypto_ecc_private_key_from_raw
・nrf_crypto_ecdh_compute
・nrf_crypto_ecc_private_key_free
・nrf_crypto_ecc_public_key_free
・nrf_crypto_ecc_key_pair_generate
I want to know the processing time of these "nrf_crypto" APIs.
I assume that it will take time to process because it performs complicated operations such as encryption and decryption.
I don't know if it's in seconds or not.
The above is an example, but the same is true for other APIs.
Is there a document that describes the processing time of each API?
Please tell me.