Skip to content

Commit c60d6da

Browse files
committed
Merge commits '9a8d65f0 75d7b7f 665ba77 3f57b9f eacad90 01b819a 31ed538 2a39ac1 0eb3000 cbe41ac cc3b8a4 ' into temp-merge-1187
2 parents 6c54db1 + cc3b8a4 commit c60d6da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1897
-1898
lines changed

.cirrus.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
env:
22
### compiler options
33
HOST:
4+
WRAPPER_CMD:
45
# Specific warnings can be disabled with -Wno-error=foo.
56
# -pedantic-errors is not equivalent to -Werror=pedantic and thus not implied by -Werror according to the GCC manual.
67
WERROR_CFLAGS: -Werror -pedantic-errors
@@ -41,6 +42,8 @@ cat_logs_snippet: &CAT_LOGS
4142
always:
4243
cat_tests_log_script:
4344
- cat tests.log || true
45+
cat_noverify_tests_log_script:
46+
- cat noverify_tests.log || true
4447
cat_exhaustive_tests_log_script:
4548
- cat exhaustive_tests.log || true
4649
cat_valgrind_ctime_test_log_script:

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ coverage.*.html
4747
*.gcno
4848
*.gcov
4949

50-
src/libsecp256k1-config.h
51-
src/libsecp256k1-config.h.in
5250
build-aux/ar-lib
5351
build-aux/config.guess
5452
build-aux/config.sub
@@ -63,7 +61,6 @@ build-aux/m4/ltversion.m4
6361
build-aux/missing
6462
build-aux/compile
6563
build-aux/test-driver
66-
src/stamp-h1
6764
libsecp256k1.pc
6865
contrib/gh-pr-create.sh
6966

CHANGELOG.md

+18-7
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,40 @@ Instead, it is the changelog of the upstream library [libsecp256k1](https://gith
33

44
# Changelog
55

6-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
All notable changes to this project will be documented in this file.
7+
8+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
9+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
710

811
## [Unreleased]
912

1013
## [0.2.0] - 2022-12-12
1114

12-
### Added
15+
#### Added
16+
- Added usage examples for common use cases in a new `examples/` directory.
1317
- Added `secp256k1_selftest`, to be used in conjunction with `secp256k1_context_static`.
18+
- Added support for 128-bit wide multiplication on MSVC for x86_64 and arm64, giving roughly a 20% speedup on those platforms.
1419

15-
### Changed
16-
- Enabled modules schnorrsig, extrakeys and ECDH by default in `./configure`.
20+
#### Changed
21+
- Enabled modules `schnorrsig`, `extrakeys` and `ecdh` by default in `./configure`.
22+
- The `secp256k1_nonce_function_rfc6979` nonce function, used by default by `secp256k1_ecdsa_sign`, now reduces the message hash modulo the group order to match the specification. This only affects improper use of ECDSA signing API.
1723

18-
### Deprecated
24+
#### Deprecated
1925
- Deprecated context flags `SECP256K1_CONTEXT_VERIFY` and `SECP256K1_CONTEXT_SIGN`. Use `SECP256K1_CONTEXT_NONE` instead.
2026
- Renamed `secp256k1_context_no_precomp` to `secp256k1_context_static`.
27+
- Module `schnorrsig`: renamed `secp256k1_schnorrsig_sign` to `secp256k1_schnorrsig_sign32`.
2128

22-
### ABI Compatibility
29+
#### ABI Compatibility
2330

2431
Since this is the first release, we do not compare application binary interfaces.
25-
However, there are unreleased versions of libsecp256k1 that are *not* ABI compatible with this version.
32+
However, there are earlier unreleased versions of libsecp256k1 that are *not* ABI compatible with this version.
2633

2734
## [0.1.0] - 2013-03-05 to 2021-12-25
2835

2936
This version was in fact never released.
3037
The number was given by the build system since the introduction of autotools in Jan 2014 (ea0fe5a5bf0c04f9cc955b2966b614f5f378c6f6).
3138
Therefore, this version number does not uniquely identify a set of source files.
39+
40+
[unreleased]: https://github.com/bitcoin-core/secp256k1/compare/v0.2.0...HEAD
41+
[0.2.0]: https://github.com/bitcoin-core/secp256k1/compare/423b6d19d373f1224fd671a982584d7e7900bc93..v0.2.0
42+
[0.1.0]: https://github.com/bitcoin-core/secp256k1/commit/423b6d19d373f1224fd671a982584d7e7900bc93

Makefile.am

+21-15
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ noinst_HEADERS += examples/random.h
7575
PRECOMPUTED_LIB = libsecp256k1_precomputed.la
7676
noinst_LTLIBRARIES = $(PRECOMPUTED_LIB)
7777
libsecp256k1_precomputed_la_SOURCES = src/precomputed_ecmult.c src/precomputed_ecmult_gen.c
78-
libsecp256k1_precomputed_la_CPPFLAGS = $(SECP_INCLUDES)
78+
libsecp256k1_precomputed_la_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
7979

8080
if USE_EXTERNAL_ASM
8181
COMMON_LIB = libsecp256k1_common.la
@@ -94,7 +94,7 @@ endif
9494
endif
9595

9696
libsecp256k1_la_SOURCES = src/secp256k1.c
97-
libsecp256k1_la_CPPFLAGS = $(SECP_INCLUDES)
97+
libsecp256k1_la_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
9898
libsecp256k1_la_LIBADD = $(SECP_LIBS) $(COMMON_LIB) $(PRECOMPUTED_LIB)
9999
libsecp256k1_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION_CURRENT):$(LIB_VERSION_REVISION):$(LIB_VERSION_AGE)
100100

@@ -107,37 +107,43 @@ if USE_BENCHMARK
107107
noinst_PROGRAMS += bench bench_internal bench_ecmult
108108
bench_SOURCES = src/bench.c
109109
bench_LDADD = libsecp256k1.la $(SECP_LIBS) $(SECP_TEST_LIBS) $(COMMON_LIB)
110+
bench_CPPFLAGS = $(SECP_CONFIG_DEFINES)
110111
bench_internal_SOURCES = src/bench_internal.c
111112
bench_internal_LDADD = $(SECP_LIBS) $(COMMON_LIB) $(PRECOMPUTED_LIB)
112-
bench_internal_CPPFLAGS = $(SECP_INCLUDES)
113+
bench_internal_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
113114
bench_ecmult_SOURCES = src/bench_ecmult.c
114115
bench_ecmult_LDADD = $(SECP_LIBS) $(COMMON_LIB) $(PRECOMPUTED_LIB)
115-
bench_ecmult_CPPFLAGS = $(SECP_INCLUDES)
116+
bench_ecmult_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
116117
endif
117118

118119
TESTS =
119120
if USE_TESTS
120-
noinst_PROGRAMS += tests
121-
tests_SOURCES = src/tests.c
122-
tests_CPPFLAGS = $(SECP_INCLUDES) $(SECP_TEST_INCLUDES)
121+
TESTS += noverify_tests
122+
noinst_PROGRAMS += noverify_tests
123+
noverify_tests_SOURCES = src/tests.c
124+
noverify_tests_CPPFLAGS = $(SECP_INCLUDES) $(SECP_TEST_INCLUDES) $(SECP_CONFIG_DEFINES)
125+
noverify_tests_LDADD = $(SECP_LIBS) $(SECP_TEST_LIBS) $(COMMON_LIB) $(PRECOMPUTED_LIB)
126+
noverify_tests_LDFLAGS = -static
123127
if VALGRIND_ENABLED
124-
tests_CPPFLAGS += -DVALGRIND
128+
noverify_tests_CPPFLAGS += -DVALGRIND
125129
noinst_PROGRAMS += valgrind_ctime_test
126130
valgrind_ctime_test_SOURCES = src/valgrind_ctime_test.c
127131
valgrind_ctime_test_LDADD = libsecp256k1.la $(SECP_LIBS) $(COMMON_LIB)
128132
endif
129133
if !ENABLE_COVERAGE
130-
tests_CPPFLAGS += -DVERIFY
131-
endif
132-
tests_LDADD = $(SECP_LIBS) $(SECP_TEST_LIBS) $(COMMON_LIB) $(PRECOMPUTED_LIB)
133-
tests_LDFLAGS = -static
134134
TESTS += tests
135+
noinst_PROGRAMS += tests
136+
tests_SOURCES = $(noverify_tests_SOURCES)
137+
tests_CPPFLAGS = $(noverify_tests_CPPFLAGS) -DVERIFY
138+
tests_LDADD = $(noverify_tests_LDADD)
139+
tests_LDFLAGS = $(noverify_tests_LDFLAGS)
140+
endif
135141
endif
136142

137143
if USE_EXHAUSTIVE_TESTS
138144
noinst_PROGRAMS += exhaustive_tests
139145
exhaustive_tests_SOURCES = src/tests_exhaustive.c
140-
exhaustive_tests_CPPFLAGS = $(SECP_INCLUDES)
146+
exhaustive_tests_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
141147
if !ENABLE_COVERAGE
142148
exhaustive_tests_CPPFLAGS += -DVERIFY
143149
endif
@@ -197,11 +203,11 @@ EXTRA_PROGRAMS = precompute_ecmult precompute_ecmult_gen
197203
CLEANFILES = $(EXTRA_PROGRAMS)
198204

199205
precompute_ecmult_SOURCES = src/precompute_ecmult.c
200-
precompute_ecmult_CPPFLAGS = $(SECP_INCLUDES)
206+
precompute_ecmult_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
201207
precompute_ecmult_LDADD = $(SECP_LIBS) $(COMMON_LIB)
202208

203209
precompute_ecmult_gen_SOURCES = src/precompute_ecmult_gen.c
204-
precompute_ecmult_gen_CPPFLAGS = $(SECP_INCLUDES)
210+
precompute_ecmult_gen_CPPFLAGS = $(SECP_INCLUDES) $(SECP_CONFIG_DEFINES)
205211
precompute_ecmult_gen_LDADD = $(SECP_LIBS) $(COMMON_LIB)
206212

207213
# See Automake manual, Section "Errors with distclean".

build-aux/m4/bitcoin_secp.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if test x"$has_valgrind" != x"yes"; then
2020
#if defined(NVALGRIND)
2121
# error "Valgrind does not support this platform."
2222
#endif
23-
]])], [has_valgrind=yes; AC_DEFINE(HAVE_VALGRIND,1,[Define this symbol if valgrind is installed, and it supports the host platform])])
23+
]])], [has_valgrind=yes])
2424
fi
2525
AC_MSG_RESULT($has_valgrind)
2626
])

ci/cirrus.sh

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/sh
22

3-
set -e
4-
set -x
3+
set -eux
54

65
export LC_ALL=C
76

@@ -11,15 +10,21 @@ print_environment() {
1110
set +x
1211
# There are many ways to print variable names and their content. This one
1312
# does not rely on bash.
14-
for i in WERROR_CFLAGS MAKEFLAGS BUILD \
13+
for var in WERROR_CFLAGS MAKEFLAGS BUILD \
1514
ECMULTWINDOW ECMULTGENPRECISION ASM WIDEMUL WITH_VALGRIND EXTRAFLAGS \
1615
EXPERIMENTAL ECDH RECOVERY SCHNORRSIG \
1716
ECDSA_S2C GENERATOR RANGEPROOF WHITELIST MUSIG ECDSAADAPTOR BPPP \
1817
SECP256K1_TEST_ITERS BENCH SECP256K1_BENCH_ITERS CTIMETEST\
1918
EXAMPLES \
20-
WRAPPER_CMD CC AR NM HOST
19+
HOST WRAPPER_CMD \
20+
CC CFLAGS CPPFLAGS AR NM
2121
do
22-
eval 'printf "%s %s " "$i=\"${'"$i"'}\""'
22+
eval "isset=\${$var+x}"
23+
if [ -n "$isset" ]; then
24+
eval "val=\${$var}"
25+
# shellcheck disable=SC2154
26+
printf '%s="%s" ' "$var" "$val"
27+
fi
2328
done
2429
echo "$0"
2530
set -x
@@ -37,7 +42,7 @@ esac
3742

3843
env >> test_env.log
3944

40-
if [ -n "$CC" ]; then
45+
if [ -n "${CC+x}" ]; then
4146
# The MSVC compiler "cl" doesn't understand "-v"
4247
$CC -v || true
4348
fi

configure.ac

+14-14
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ fi
273273
AM_CONDITIONAL([VALGRIND_ENABLED],[test "$enable_valgrind" = "yes"])
274274

275275
if test x"$enable_coverage" = x"yes"; then
276-
AC_DEFINE(COVERAGE, 1, [Define this symbol to compile out all VERIFY code])
276+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DCOVERAGE=1"
277277
SECP_CFLAGS="-O0 --coverage $SECP_CFLAGS"
278278
LDFLAGS="--coverage $LDFLAGS"
279279
else
@@ -327,7 +327,7 @@ enable_external_asm=no
327327

328328
case $set_asm in
329329
x86_64)
330-
AC_DEFINE(USE_ASM_X86_64, 1, [Define this symbol to enable x86_64 assembly optimizations])
330+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DUSE_ASM_X86_64=1"
331331
;;
332332
arm)
333333
enable_external_asm=yes
@@ -340,20 +340,20 @@ no)
340340
esac
341341

342342
if test x"$enable_external_asm" = x"yes"; then
343-
AC_DEFINE(USE_EXTERNAL_ASM, 1, [Define this symbol if an external (non-inline) assembly implementation is used])
343+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DUSE_EXTERNAL_ASM=1"
344344
fi
345345

346346

347347
# Select wide multiplication implementation
348348
case $set_widemul in
349349
int128_struct)
350-
AC_DEFINE(USE_FORCE_WIDEMUL_INT128_STRUCT, 1, [Define this symbol to force the use of the structure for simulating (unsigned) int128 based wide multiplication])
350+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DUSE_FORCE_WIDEMUL_INT128_STRUCT=1"
351351
;;
352352
int128)
353-
AC_DEFINE(USE_FORCE_WIDEMUL_INT128, 1, [Define this symbol to force the use of the (unsigned) __int128 based wide multiplication implementation])
353+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DUSE_FORCE_WIDEMUL_INT128=1"
354354
;;
355355
int64)
356-
AC_DEFINE(USE_FORCE_WIDEMUL_INT64, 1, [Define this symbol to force the use of the (u)int64_t based wide multiplication implementation])
356+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DUSE_FORCE_WIDEMUL_INT64=1"
357357
;;
358358
auto)
359359
;;
@@ -380,7 +380,7 @@ case $set_ecmult_window in
380380
# not in range
381381
AC_MSG_ERROR($error_window_size)
382382
fi
383-
AC_DEFINE_UNQUOTED(ECMULT_WINDOW_SIZE, $set_ecmult_window, [Set window size for ecmult precomputation])
383+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DECMULT_WINDOW_SIZE=$set_ecmult_window"
384384
;;
385385
esac
386386

@@ -393,7 +393,7 @@ fi
393393

394394
case $set_ecmult_gen_precision in
395395
2|4|8)
396-
AC_DEFINE_UNQUOTED(ECMULT_GEN_PREC_BITS, $set_ecmult_gen_precision, [Set ecmult gen precision bits])
396+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DECMULT_GEN_PREC_BITS=$set_ecmult_gen_precision"
397397
;;
398398
*)
399399
AC_MSG_ERROR(['ecmult gen precision not 2, 4, 8 or "auto"'])
@@ -418,7 +418,7 @@ SECP_CFLAGS="$SECP_CFLAGS $WERROR_CFLAGS"
418418
# tested first.
419419

420420
if test x"$enable_module_ecdh" = x"yes"; then
421-
AC_DEFINE(ENABLE_MODULE_ECDH, 1, [Define this symbol to enable the ECDH module])
421+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DENABLE_MODULE_ECDH=1"
422422
fi
423423

424424
if test x"$enable_module_musig" = x"yes"; then
@@ -427,7 +427,7 @@ if test x"$enable_module_musig" = x"yes"; then
427427
fi
428428

429429
if test x"$enable_module_recovery" = x"yes"; then
430-
AC_DEFINE(ENABLE_MODULE_RECOVERY, 1, [Define this symbol to enable the ECDSA pubkey recovery module])
430+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DENABLE_MODULE_RECOVERY=1"
431431
fi
432432

433433
if test x"$enable_module_whitelist" = x"yes"; then
@@ -455,20 +455,20 @@ if test x"$enable_module_generator" = x"yes"; then
455455
fi
456456

457457
if test x"$enable_module_schnorrsig" = x"yes"; then
458-
AC_DEFINE(ENABLE_MODULE_SCHNORRSIG, 1, [Define this symbol to enable the schnorrsig module])
458+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DENABLE_MODULE_SCHNORRSIG=1"
459459
enable_module_extrakeys=yes
460460
fi
461461

462462
if test x"$enable_module_extrakeys" = x"yes"; then
463-
AC_DEFINE(ENABLE_MODULE_EXTRAKEYS, 1, [Define this symbol to enable the extrakeys module])
463+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DENABLE_MODULE_EXTRAKEYS=1"
464464
fi
465465

466466
if test x"$enable_module_ecdsa_s2c" = x"yes"; then
467467
AC_DEFINE(ENABLE_MODULE_ECDSA_S2C, 1, [Define this symbol to enable the ECDSA sign-to-contract module])
468468
fi
469469

470470
if test x"$enable_external_default_callbacks" = x"yes"; then
471-
AC_DEFINE(USE_EXTERNAL_DEFAULT_CALLBACKS, 1, [Define this symbol if an external implementation of the default callbacks is used])
471+
SECP_CONFIG_DEFINES="$SECP_CONFIG_DEFINES -DUSE_EXTERNAL_DEFAULT_CALLBACKS=1"
472472
fi
473473

474474
if test x"$use_reduced_surjection_proof_size" = x"yes"; then
@@ -526,13 +526,13 @@ fi
526526
### Generate output
527527
###
528528

529-
AC_CONFIG_HEADERS([src/libsecp256k1-config.h])
530529
AC_CONFIG_FILES([Makefile libsecp256k1.pc])
531530
AC_SUBST(SECP_INCLUDES)
532531
AC_SUBST(SECP_LIBS)
533532
AC_SUBST(SECP_TEST_LIBS)
534533
AC_SUBST(SECP_TEST_INCLUDES)
535534
AC_SUBST(SECP_CFLAGS)
535+
AC_SUBST(SECP_CONFIG_DEFINES)
536536
AM_CONDITIONAL([ENABLE_COVERAGE], [test x"$enable_coverage" = x"yes"])
537537
AM_CONDITIONAL([USE_TESTS], [test x"$enable_tests" != x"no"])
538538
AM_CONDITIONAL([USE_EXHAUSTIVE_TESTS], [test x"$enable_exhaustive_tests" != x"no"])

doc/release-process.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This process also assumes that there will be no minor releases for old major rel
2323
git tag -s v$MAJOR.$MINOR.$PATCH -m "libsecp256k1 $MAJOR.$MINOR.$PATCH" $RELEASE_COMMIT
2424
git push [email protected]:bitcoin-core/secp256k1.git v$MAJOR.$MINOR.$PATCH
2525
```
26-
3. Open a PR to the master branch with a commit (using message `"release: bump version after $MAJOR.$MINOR.$PATCH"`, for example) that sets `_PKG_VERSION_IS_RELEASE` to `false` and `_PKG_VERSION_PATCH` to `$PATCH + 1` and increases `_LIB_VERSION_REVISION`. If other maintainers are not present to approve the PR, it can be merged without ACKs.
26+
3. Open a PR to the master branch with a commit (using message `"release cleanup: bump version after $MAJOR.$MINOR.$PATCH"`, for example) that sets `_PKG_VERSION_IS_RELEASE` to `false` and `_PKG_VERSION_PATCH` to `$PATCH + 1` and increases `_LIB_VERSION_REVISION`. If other maintainers are not present to approve the PR, it can be merged without ACKs.
2727
4. Create a new GitHub release with a link to the corresponding entry in [CHANGELOG.md](../CHANGELOG.md).
2828

2929
## Maintenance release

include/secp256k1.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_tweak_mul(
849849
* kind of elliptic curve point multiplication and thus does not benefit from
850850
* enhanced protection against side-channel leakage currently.
851851
*
852-
* It is safe call this function on a copy of secp256k1_context_static in writable
852+
* It is safe to call this function on a copy of secp256k1_context_static in writable
853853
* memory (e.g., obtained via secp256k1_context_clone). In that case, this
854854
* function is guaranteed to return 1, but the call will have no effect because
855855
* the static context (or a copy thereof) is not meant to be randomized.

src/field.h

-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
* imply normality.
1919
*/
2020

21-
#if defined HAVE_CONFIG_H
22-
#include "libsecp256k1-config.h"
23-
#endif
24-
2521
#include "util.h"
2622

2723
#if defined(SECP256K1_WIDEMUL_INT128)

src/field_5x52_impl.h

-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
#ifndef SECP256K1_FIELD_REPR_IMPL_H
88
#define SECP256K1_FIELD_REPR_IMPL_H
99

10-
#if defined HAVE_CONFIG_H
11-
#include "libsecp256k1-config.h"
12-
#endif
13-
1410
#include "util.h"
1511
#include "field.h"
1612
#include "modinv64_impl.h"

src/field_impl.h

-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
#ifndef SECP256K1_FIELD_IMPL_H
88
#define SECP256K1_FIELD_IMPL_H
99

10-
#if defined HAVE_CONFIG_H
11-
#include "libsecp256k1-config.h"
12-
#endif
13-
1410
#include "util.h"
1511

1612
#if defined(SECP256K1_WIDEMUL_INT128)

0 commit comments

Comments
 (0)