Skip to content

Commit 8093875

Browse files
authored
Merge pull request wolfSSL#9879 from embhorn/f379
Fix wc_ecc_sign_hash_ex with Intel QA
2 parents cc2fdda + 0c2de30 commit 8093875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wolfcrypt/src/ecc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7436,7 +7436,7 @@ int wc_ecc_sign_hash_ex(const byte* in, word32 inlen, WC_RNG* rng,
74367436

74377437
#ifndef HAVE_CAVIUM_V
74387438
mp_clear(e);
7439-
mp_clear(k);
7439+
mp_forcezero(k);
74407440
#endif
74417441
wc_ecc_curve_free(curve);
74427442
FREE_CURVE_SPECS();

0 commit comments

Comments
 (0)