This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Crypto Verification Failing Intermittently

Hi,

I have an application that verifies a chunk of data and EdDSA Ed25519 signature against a remote public key.

The device application generates a random number, sends it to a PC over USB. The number is sent to a server and the response is then passed back to the device. The application then attempts to verify the response using nrf_crypto_eddsa_verify . This function intermittently fails with the error NRF_ERROR_CRYPTO_ECDSA_INVALID_SIGNATURE . I have verified "by hand" that the data fed into the function is correct and it is.

Has anyone experienced any issues with this module?

Thanks,

Parents
  • Hi,

    The return value indicates a signature verification failure, so I would not expect you to get this if you have verified that the data and signature is correct

    • Could there be a buffer corruption issue of some sort? Can you try to verify that the input buffers (holding the data and signature) are valid after you check the signature as well to check that? 
    • Do you get the same retult using both the Oberon and CC310 backend, or only using one of the backends?
    • Also, which SDK are you using?
Reply
  • Hi,

    The return value indicates a signature verification failure, so I would not expect you to get this if you have verified that the data and signature is correct

    • Could there be a buffer corruption issue of some sort? Can you try to verify that the input buffers (holding the data and signature) are valid after you check the signature as well to check that? 
    • Do you get the same retult using both the Oberon and CC310 backend, or only using one of the backends?
    • Also, which SDK are you using?
Children
Related