2023-04-20 01:20 PM
I have an application where I need to use ECDSA to check a signature using the secp192r1 curve. However, I don't see a clear define for this in cmox_ecc.h. Is this supported under a different name?
Solved! Go to Solution.
2023-04-21 04:34 AM
Hello @crwper,
yes this curve is not provided as a predefined curve.
This means you need to provide the curve parameters with the cmox_ecc_customCurveConstruct
Best regards
Jocelyn
2023-04-21 04:34 AM
Hello @crwper,
yes this curve is not provided as a predefined curve.
This means you need to provide the curve parameters with the cmox_ecc_customCurveConstruct
Best regards
Jocelyn
2023-04-21 11:22 AM
Thank you!