Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upstream PRs 879, 959, 955, 944, 951, 960, 844, 963, 965 #140

Merged
merged 36 commits into from
Jul 28, 2021
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9570f67
Avoid passing out-of-bound pointers to 0-size memcpy
sipa Jan 24, 2021
99e8614
README: mention schnorrsig module
jonasnick Oct 30, 2020
df3bfa1
schnorrsig: clarify result of calling nonce_function_bip340 without data
jonasnick Oct 30, 2020
442cee5
schnorrsig: add algolen argument to nonce_function_hardened
jonasnick Jan 15, 2021
a4642fa
configure: replace AC_PATH_PROG to AC_CHECK_PROG
UdjinM6 Jun 15, 2021
8ae56e3
Merge #879: Avoid passing out-of-bound pointers to 0-size memcpy
real-or-random Jun 16, 2021
bdf19f1
Add random field multiply/square tests
sipa Jun 21, 2021
b6c0b72
schnorrsig: remove noncefp args from sign; add sign_custom function
jonasnick Oct 30, 2020
5a8e499
Add secp256k1_tagged_sha256 as defined in BIP-340
jonasnick Jan 15, 2021
a0c3fc1
schnorrsig: allow signing and verification of variable length msgs
jonasnick Jan 15, 2021
d8d806a
schnorrsig: add extra parameter struct for sign_custom
jonasnick Nov 2, 2020
fdd06b7
schnorrsig: add tests for sign_custom and varlen msg verification
jonasnick Jan 21, 2021
5f6ceaf
schnorrsig: allow setting MSGLEN != 32 in benchmark
jonasnick Mar 18, 2021
41ed139
tests: really test the non-var scalar inverse
niooss-ledger Jun 28, 2021
75ce488
Merge bitcoin-core/secp256k1#959: tests: really test the non-var scal…
jonasnick Jun 28, 2021
4866178
Merge bitcoin-core/secp256k1#955: Add random field multiply/square tests
jonasnick Jun 30, 2021
0725626
build: Use own variable SECP_CFLAGS instead of touching user CFLAGS
real-or-random May 13, 2021
595e8a3
build: Enable -Wcast-align=strict warning
real-or-random May 13, 2021
7939cd5
build: List *CPPFLAGS before *CFLAGS like on the compiler command line
real-or-random May 13, 2021
b924e1e
build: Ensure that configure's compile checks default to -O2
real-or-random May 13, 2021
0302138
ci: Make compiler warning into errors on CI
real-or-random May 6, 2021
446d28d
Merge bitcoin-core/secp256k1#944: Various improvements related to CFLAGS
jonasnick Jul 1, 2021
253f90c
Merge bitcoin-core/secp256k1#951: configure: replace AC_PATH_PROG to …
jonasnick Jul 2, 2021
a1ee83c
tests_exhaustive: check the result of secp256k1_ecdsa_sign
niooss-ledger Jun 28, 2021
ec3aaa5
Merge #960: tests_exhaustive: check the result of secp256k1_ecdsa_sign
real-or-random Jul 3, 2021
0440945
Merge #844: schnorrsig API overhaul
real-or-random Jul 3, 2021
2cc3cfa
Fix -Wmissing-braces warning in clang
real-or-random Jul 4, 2021
769528f
Don't use string literals for char arrays without NUL termination
real-or-random Jul 4, 2021
b5b8e7b
Don't declare constants twice
real-or-random Jul 4, 2021
f698caa
Use unsigned char consistently for byte arrays
real-or-random Jul 4, 2021
90e8344
ci: Add C++ test
real-or-random Jul 5, 2021
7688a4f
Merge bitcoin-core/secp256k1#963: "Schnorrsig API overhaul" fixups
jonasnick Jul 5, 2021
aeece44
gen_context: Don't use any ASM
real-or-random Jul 14, 2021
be8d9c2
Merge bitcoin-core/secp256k1#965: gen_context: Don't use any ASM
real-or-random Jul 14, 2021
2979e4d
Merge commits '8ae56e33 75ce488c 4866178d 446d28d9 253f90cd ec3aaa50 …
apoelstra Jul 27, 2021
6ad66de
rangeproof: add an (unnecessary) variable initialization to shut up CI
apoelstra Jul 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
rangeproof: add an (unnecessary) variable initialization to shut up CI
  • Loading branch information
apoelstra committed Jul 27, 2021
commit 6ad66de6802a47687d451ac6d5369dc36c558874
2 changes: 1 addition & 1 deletion src/modules/rangeproof/rangeproof_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ SECP256K1_INLINE static int secp256k1_rangeproof_rewind_inner(secp256k1_scalar *
secp256k1_scalar stmp;
unsigned char prep[4096];
unsigned char tmp[32];
uint64_t value;
uint64_t value = 0;
size_t offset;
size_t i;
size_t j;
Expand Down