We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36afb8 commit 960ba5fCopy full SHA for 960ba5f
src/hash_impl.h
@@ -265,7 +265,7 @@ static void secp256k1_rfc6979_hmac_sha256_generate(secp256k1_rfc6979_hmac_sha256
265
266
while (outlen > 0) {
267
secp256k1_hmac_sha256 hmac;
268
- int now = outlen;
+ size_t now = outlen;
269
secp256k1_hmac_sha256_initialize(&hmac, rng->k, 32);
270
secp256k1_hmac_sha256_write(&hmac, rng->v, 32);
271
secp256k1_hmac_sha256_finalize(&hmac, rng->v);
0 commit comments