Skip to content

Commit a82287f

Browse files
committed
schnorrsig: clear out masked secret key in BIP-340 nonce function
1 parent f79f46c commit a82287f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/modules/schnorrsig/main_impl.h

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ static int nonce_function_bip340(unsigned char *nonce32, const unsigned char *ms
9494
secp256k1_sha256_write(&sha, msg, msglen);
9595
secp256k1_sha256_finalize(&sha, nonce32);
9696
secp256k1_sha256_clear(&sha);
97+
secp256k1_memclear(masked_key, sizeof(masked_key));
98+
9799
return 1;
98100
}
99101

0 commit comments

Comments
 (0)