Hello,the cryptolib offers the function ECDSAsign. In the ecc.h it is declared as int32_t ECDSAsign(const uint8_t *P_pDigest,
int32_t P_digestSize,
const ECDSAsignature_stt *P_pSignature...
I am not sure if I get your answer correctly but I interpret it like this: since P_pSignature pointer to a const ECDSAsignature_stt structure, the struct pointed to won't change. When then function ECDSAsign is invoked I can see that for example P_pS...