Skip to content
This repository was archived by the owner on Mar 5, 2024. It is now read-only.

Commit 323cd15

Browse files
committed
Fix innocuous memset size bug in ECC test method
In one of the ECC auxiliary test methods, a buffer 'd' was being erased with memset using a wrong buffer size (NUM_ECC_WORDS instead of 4*NUM_ECC_WORDS). This bug was not affecting the correctness of ECC nor any other crypto primtive. In fact, it was not affecting even the ECC test itself since the content of such buffer was being overwritten rigth after the erasure procedure. This fix removes a warning triggered when compiling the code.
1 parent 6a22712 commit 323cd15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_ecc_utils.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ int keygen_vectors(char **d_vec, char **qx_vec, char **qy_vec, int tests,
241241
* Feed prvkey vector as padded random seed into ecc_make_key.
242242
* Internal mod-reduction will be zero-op and generate correct prv/pub
243243
*/
244-
memset(d, 0, NUM_ECC_WORDS);
244+
memset(d, 0, sizeof(d));
245245
string2scalar(d, NUM_ECC_WORDS, d_vec[i]);
246246

247247
uint8_t pub_bytes[2*NUM_ECC_BYTES];

0 commit comments

Comments
 (0)