2023-04-21 12:38:34 +02:00
libsecp256k1-zkp
================
2014-03-30 18:22:47 +02:00
2022-08-02 10:38:28 +02:00

2023-04-21 12:38:34 +02:00
2026-02-16 13:01:42 +02:00
A fork of [libsecp256k1 ](https://github.com/bitcoin-core/secp256k1 ) with support for advanced and experimental features
2023-04-21 12:38:34 +02:00
Added features:
* Experimental module for ECDSA adaptor signatures.
* Experimental module for ECDSA sign-to-contract.
2026-03-12 14:12:17 +02:00
* Experimental modules for Confidential Assets (Pedersen commitments, range proofs, and [surjection proofs ](src/modules/surjection/surjection.md )).
2023-04-21 12:38:34 +02:00
* Experimental module for [address whitelisting ](src/modules/whitelist/whitelist.md ).
2026-03-12 14:12:17 +02:00
* Experimental module for Schnorr signature half-aggregation.
2026-08-31 00:05:16 +02:00
* Experimental module for [FROST (BIP 445) ](src/modules/frost/frost.md ).
2026-08-31 10:58:24 +02:00
* Experimental module for [ChillDKG ](src/modules/chilldkg/chilldkg.md ), distributed key generation for FROST (bip-frost-dkg draft).
2026-08-31 12:25:55 +02:00
* Experimental module for [Iceberg ](doc/iceberg.md ), a threshold scheme that lets a group of parties stand in for a single MuSig2 (BIP 327) participant.
build: wire prefractal into CI and the README feature list
The prefractal module landed on main in parallel with the branches that
established the current module conventions, so it never picked up the
integration points every other experimental module has. 01379624 covered
the CMake experimental gate and EXTRA_DIST; these two are what remained.
The CI gap is the more consequential of the pair. ci/ci.sh had no
PREFRACTAL plumbing at all, so no CI job has ever passed
--enable-module-prefractal -- the flag was reachable only by configuring
by hand, and the module has been built and tested exclusively outside CI
since it landed.
- ci/ci.sh: PREFRACTAL joins FROST, CHILLDKG and ICEBERG in the
reproduction header's variable list, and configure gains
--enable-module-prefractal="$PREFRACTAL" after the iceberg line.
Unlike 2473c768 there is no bench-step counterpart: prefractal ships
neither a bench binary nor an example program, so the BENCH block
needs nothing.
- .github/workflows/ci.yml: a PREFRACTAL: 'no' default alongside the
other module defaults, then PREFRACTAL: 'yes' in the 21 places that
already enable FROST (11 inline matrix entries and 10 job-level env
blocks). The default is not cosmetic -- ci.sh runs under set -eux, so
an undefined PREFRACTAL would abort every job at the configure step,
including the ones that build no modules at all.
FROST-enabled jobs are the right target because enabling prefractal
implies frost (configure.ac:539, mirrored in src/CMakeLists.txt:90):
adding PREFRACTAL to a job that sets FROST: 'no' would silently turn
frost on and change what that job covers. Every job that already builds
frost also enables musig, schnorrsig, extrakeys and experimental, which
is the remainder of prefractal's dependency chain, so no job needed any
other variable adjusted.
This is a slightly wider set than CHILLDKG and ICEBERG cover. The
x86_64-debian matrix entry at line 117 sets FROST: 'yes' without
CHILLDKG or ICEBERG, and 2473c768 deliberately left it alone; it gets
PREFRACTAL here, on the rule above. The consequence is that no job now
builds frost without prefractal. If that standalone-frost combination is
worth preserving, that one entry is the place to drop it.
README.md gains the doc/prefractal.md link beside the frost, chilldkg
and iceberg entries. This is the exact inverse of the bug 42f827a7
fixed: there the documents were linked from README.md but missing from
EXTRA_DIST, so the tarball's README pointed at files it did not carry.
Here doc/prefractal.md has been in EXTRA_DIST since 01379624 but nothing
referenced it, so it shipped unreferenced. All four module documents
this fork adds are now both linked and distributed.
Verified with ./autogen.sh, ./configure --enable-experimental
--enable-module-prefractal and make -j: all exit 0 with no warnings, and
the configure summary shows the implication chain resolving, with
prefractal = yes pulling in frost = yes and musig = yes. nm confirms
run_prefractal_api_test is linked into ./tests, and the suite passes.
make dist succeeds and the tarball carries doc/prefractal.md next to
doc/iceberg.md, src/modules/frost/frost.md and
src/modules/chilldkg/chilldkg.md. ci/ci.sh passes sh -n.
Verified programmatically for the workflow, as in 2473c768: the YAML
parses, 33 effective job contexts set FROST: 'yes', all 33 of them now
also set PREFRACTAL: 'yes', every one has MUSIG, SCHNORRSIG, EXTRAKEYS
and EXPERIMENTAL set to 'yes', and no context sets PREFRACTAL without
FROST.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-04 03:28:22 +02:00
* Experimental module for [Prefractal ](doc/prefractal.md ), a nested FROST+MuSig2 signer that lets a FROST group occupy one participant slot of an ordinary MuSig2 (BIP 327) session.
2023-04-21 12:38:34 +02:00
Experimental features are made available for testing and review by the community. The APIs of these features should not be considered stable.
2014-05-25 13:54:13 -07:00
Build steps
-----------
2024-12-11 09:15:26 -05:00
Obtaining and verifying
-----------------------
The git tag for each release (e.g. `v0.6.0` ) is GPG-signed by one of the maintainers.
For a fully verified build of this project, it is recommended to obtain this repository
via git, obtain the GPG keys of the signing maintainer(s), and then verify the release
tag's signature using git.
This can be done with the following steps:
1. Obtain the GPG keys listed in [SECURITY.md ](./SECURITY.md ).
2. If possible, cross-reference these key IDs with another source controlled by its owner (e.g.
social media, personal website). This is to mitigate the unlikely case that incorrect
content is being presented by this repository.
3. Clone the repository:
```
git clone https://github.com/bitcoin-core/secp256k1
```
4. Check out the latest release tag, e.g.
```
2026-06-29 07:06:10 +00:00
git checkout v0.7.1
2024-12-11 09:15:26 -05:00
```
5. Use git to verify the GPG signature:
```
2026-06-29 07:06:10 +00:00
% git tag -v v0.7.1 | grep -C 3 'Good signature'
2024-12-11 09:15:26 -05:00
2026-06-29 07:06:10 +00:00
gpg: Signature made Mon 26 Jan 2026 07:42:46 PM UTC
gpg: using RSA key 2840EAABF4BC9F0FFD716AFAFBAFCC46DE2D3FE2
gpg: Good signature from "Pieter Wuille <pieter@wuille .net>" [unknown]
gpg: aka "Pieter Wuille <pieter.wuille@gmail .com>" [full]
gpg: aka "[jpeg image of size 5996]" [undefined]
2024-12-11 09:15:26 -05:00
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
2026-06-29 07:06:10 +00:00
Primary key fingerprint: 133E AC17 9436 F14A 5CF1 B794 860F EB80 4E66 9320
Subkey fingerprint: 2840 EAAB F4BC 9F0F FD71 6AFA FBAF CC46 DE2D 3FE2
2024-12-11 09:15:26 -05:00
```
2023-03-08 13:33:16 +00:00
Building with Autotools
-----------------------
2014-05-25 13:54:13 -07:00
2024-11-26 22:35:25 +01:00
$ ./autogen.sh # Generate a ./configure script
$ ./configure # Generate a build system
$ make # Run the actual build process
$ make check # Run the test suite
$ sudo make install # Install the library into the system (optional)
2015-10-18 10:35:16 +02:00
2026-02-13 11:36:52 +02:00
To compile optional modules (such as Schnorr signatures), you need to run `./configure` with additional flags (such as `--enable-module-schnorrsig` ). Run `./configure --help` to see the full list of available flags. For experimental modules, you will also need `--enable-experimental` as well as a flag for each individual module, e.g. `--enable-module-rangeproof` .
2022-03-25 07:09:36 -07:00
2025-06-04 19:13:49 +01:00
Building with CMake
-------------------
2023-03-08 13:33:16 +00:00
To maintain a pristine source tree, CMake encourages to perform an out-of-source build by using a separate dedicated build tree.
### Building on POSIX systems
2024-11-26 22:35:25 +01:00
$ cmake -B build # Generate a build system in subdirectory "build"
$ cmake --build build # Run the actual build process
$ ctest --test-dir build # Run the test suite
$ sudo cmake --install build # Install the library into the system (optional)
2023-03-08 13:33:16 +00:00
2024-11-26 22:35:25 +01:00
To compile optional modules (such as Schnorr signatures), you need to run `cmake` with additional flags (such as `-DSECP256K1_ENABLE_MODULE_SCHNORRSIG=ON` ). Run `cmake -B build -LH` or `ccmake -B build` to see the full list of available flags.
2023-03-08 13:33:16 +00:00
### Cross compiling
To alleviate issues with cross compiling, preconfigured toolchain files are available in the `cmake` directory.
For example, to cross compile for Windows:
2024-11-26 22:35:25 +01:00
$ cmake -B build -DCMAKE_TOOLCHAIN_FILE=cmake/x86_64-w64-mingw32.toolchain.cmake
2023-03-08 13:33:16 +00:00
To cross compile for Android with [NDK ](https://developer.android.com/ndk/guides/cmake ) (using NDK's toolchain file, and assuming the `ANDROID_NDK_ROOT` environment variable has been set):
2024-11-26 22:35:25 +01:00
$ cmake -B build -DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_ROOT}/build/cmake/android.toolchain.cmake" -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=28
2023-03-08 13:33:16 +00:00
### Building on Windows
2025-08-24 11:11:07 +01:00
The following example assumes Visual Studio 2022. Using clang-cl is recommended.
2023-03-08 13:33:16 +00:00
In "Developer Command Prompt for VS 2022":
2025-08-24 11:11:07 +01:00
>cmake -B build -T ClangCL
2023-03-08 19:21:13 +01:00
>cmake --build build --config RelWithDebInfo
2023-03-08 13:33:16 +00:00
2020-04-30 15:08:50 +03:00
Usage examples
-----------
2023-07-17 13:02:10 +00:00
2022-08-02 10:38:56 +02:00
Usage examples can be found in the [examples ](examples ) directory. To compile them you need to configure with `--enable-examples` .
2020-04-30 15:08:50 +03:00
* [ECDSA example ](examples/ecdsa.c )
2022-03-25 07:09:36 -07:00
* [Schnorr signatures example ](examples/schnorr.c )
* [Deriving a shared secret (ECDH) example ](examples/ecdh.c )
2024-06-25 03:11:21 +02:00
* [ElligatorSwift key exchange example ](examples/ellswift.c )
2025-06-07 16:15:29 +02:00
* [MuSig2 Schnorr multi-signatures example ](examples/musig.c )
2022-08-02 10:38:56 +02:00
2025-06-07 16:15:29 +02:00
To compile the examples, make sure the corresponding modules are enabled.
2020-04-30 15:08:50 +03:00
2021-10-19 06:11:59 +05:30
Benchmark
------------
2023-04-21 12:38:34 +02:00
If configured with `--enable-benchmark` (which is the default), binaries for benchmarking the libsecp256k1-zkp functions will be present in the root directory after the build.
2021-10-19 06:11:59 +05:30
To print the benchmark result to the command line:
$ ./bench_name
To create a CSV file for the benchmark result :
$ ./bench_name | sed '2d;s/ \{1,\}//g' > bench_name.csv
2019-10-28 14:59:05 +00:00
Reporting a vulnerability
------------
See [SECURITY.md ](SECURITY.md )
2023-10-17 13:09:36 +00:00
Contributing to libsecp256k1
------------
See [CONTRIBUTING.md ](CONTRIBUTING.md )