Hi,
Our device is based on nRF52840 SDK 15.0.0
The device verifies signature of incoming messages (which were sent over BLE from PC application) using ECDSA with spec256r1 curve.
Verification code is based on ECDSA example (Bob's verify function)
We got error code NRF_ERROR_CRYPTO_INTERNAL (34070) from executing backend implementation (line 459 in nrf_crypto_ecdsa.c file)
result = backend_implementation(p_context, p_public_key, p_hash, hash_size, p_signature);
How can we debug this internal error?
Any ideas what can be the root cause for this issue?
Thanks in advance