elements/src/secp256k1
2025-04-17 11:06:32 +02:00
..
.github secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
build-aux/m4 Merge commit '3f32c20932' into secp256k1-zkp-update 2023-08-08 12:46:02 +02:00
ci ci: fix lint issues 2025-04-17 11:06:32 +02:00
cmake ci: fix lint issues 2025-04-17 11:06:32 +02:00
contrib secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
doc secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
examples secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
include secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
sage Merge commit '3f32c20932' into secp256k1-zkp-update 2023-08-08 12:46:02 +02:00
src secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
tools secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
.cirrus.yml secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
.gitattributes Merge commit '35d6112a72' into test-fix-1058 2022-05-25 15:18:23 -07:00
.gitignore Merge commit '3f32c20932' into secp256k1-zkp-update 2023-08-08 12:46:02 +02:00
autogen.sh Merge commit 'd48555b36a' as 'src/secp256k1' 2014-11-18 18:06:36 +01:00
CHANGELOG.md secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
CMakeLists.txt secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
CMakePresets.json Merge commit '3f32c20932' into secp256k1-zkp-update 2023-08-08 12:46:02 +02:00
configure.ac secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
CONTRIBUTING.md secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
COPYING Merge commit 'd48555b36a' as 'src/secp256k1' 2014-11-18 18:06:36 +01:00
libsecp256k1.pc.in Merge commit '3f32c20932' into secp256k1-zkp-update 2023-08-08 12:46:02 +02:00
Makefile.am secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
README.md secp256k1-zkp subtree squash: Merge commit '6089844b3c' into merged-master 2025-04-02 09:28:27 +02:00
SECURITY.md Merge commit '35d6112a72' into test-fix-1058 2022-05-25 15:18:23 -07:00

libsecp256k1-zkp

Dependencies: None

A fork of libsecp256k1 with support for advanced and experimental features such as Confidential Assets and MuSig2

Added features:

  • Experimental module for ECDSA adaptor signatures.
  • Experimental module for ECDSA sign-to-contract.
  • Experimental module for MuSig2.
  • Experimental module for Confidential Assets (Pedersen commitments, range proofs, and surjection proofs).
  • Experimental module for Bulletproofs++ range proofs.
  • Experimental module for address whitelisting.

Experimental features are made available for testing and review by the community. The APIs of these features should not be considered stable.

Build steps

Building with Autotools

$ ./autogen.sh
$ ./configure
$ make
$ make check  # run the test suite
$ sudo make install  # optional

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-musig.

Building with CMake (experimental)

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

$ mkdir build && cd build
$ cmake ..
$ cmake --build .
$ ctest  # run the test suite
$ sudo cmake --build . --target install  # optional

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 .. -LH to see the full list of available flags.

Cross compiling

To alleviate issues with cross compiling, preconfigured toolchain files are available in the cmake directory. For example, to cross compile for Windows:

$ cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/x86_64-w64-mingw32.toolchain.cmake

To cross compile for Android with NDK (using NDK's toolchain file, and assuming the ANDROID_NDK_ROOT environment variable has been set):

$ cmake .. -DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_ROOT}/build/cmake/android.toolchain.cmake" -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=28

Building on Windows

To build on Windows with Visual Studio, a proper generator must be specified for a new build tree.

The following example assumes using of Visual Studio 2022 and CMake v3.21+.

In "Developer Command Prompt for VS 2022":

>cmake -G "Visual Studio 17 2022" -A x64 -S . -B build
>cmake --build build --config RelWithDebInfo

Usage examples

Usage examples can be found in the examples directory. To compile them you need to configure with --enable-examples.

To compile the Schnorr signature, ECDH and MuSig examples, you need to enable the corresponding module by providing a flag to the configure script, for example --enable-module-schnorrsig.

Benchmark

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.

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

Reporting a vulnerability

See SECURITY.md

Contributing to libsecp256k1

See CONTRIBUTING.md