Skip to content

Commit

Permalink
secp256k1_memclear: enforce variant using volatile_memset (for CI tes…
Browse files Browse the repository at this point in the history
…ting)
  • Loading branch information
theStack committed Oct 22, 2024
1 parent b942b9f commit dfb5f39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ static SECP256K1_INLINE void secp256k1_memczero(void *s, size_t len, int flag) {

/* Cleanses memory to prevent leaking sensitive info. Won't be optimized out. */
static SECP256K1_INLINE void secp256k1_memclear(void *ptr, size_t len) {
#if defined(_MSC_VER)
#if 0
/* SecureZeroMemory is guaranteed not to be optimized out by MSVC. */
SecureZeroMemory(ptr, len);
#elif defined(__GNUC__)
#elif 0
/* We use a memory barrier that scares the compiler away from optimizing out the memset.
*
* Quoting Adam Langley <[email protected]> in commit ad1907fe73334d6c696c8539646c21b11178f20f
Expand Down

0 comments on commit dfb5f39

Please sign in to comment.