merge-script 8c3e6e6d99 Merge bitcoin-core/secp256k1#1889: field: serialize elements by word
e217ead5c4 field: serialize elements by word (Lőrinc)

Pull request description:

  **Problem:** Both field implementations serialize normalized elements with 32 separate byte assignments in `secp256k1_fe_impl_get_b32`.
  They were introduced in [#437](https://github.com/bitcoin-core/secp256k1/pull/437/changes#diff-6e0cae0111d7c054ba27f22399eb4a2ac6c9788ee97da7f9fc5948c63dcf882cL353) to unroll nested nibble loops for performance.
  At the time, the endian write helpers did not exist, so the unrolling was expressed directly.

  **Fix:** Keep both serializers unrolled by packing the 5x52 limbs into four 64-bit words and the 10x26 limbs into eight 32-bit words, then reuse the corresponding endian write helper.
  This matches the existing [4x64](https://github.com/bitcoin-core/secp256k1/blob/ebf594320dc838b9de1abb54d5ba98cef84f4297/src/scalar_4x64_impl.h#L161-L168) and [8x32](https://github.com/bitcoin-core/secp256k1/blob/ebf594320dc838b9de1abb54d5ba98cef84f4297/src/scalar_8x32_impl.h#L195-L206) scalar serializers.
  The serialized output is unchanged for normalized inputs, and benchmarks indicate no measurable performance regression.

  **Testing:** Existing [field conversion and reduced-boundary tests](https://github.com/bitcoin-core/secp256k1/blob/ebf594320dc838b9de1abb54d5ba98cef84f4297/src/tests.c#L3079-L3173) compare the serialized bytes directly.
  [Compiler Explorer](https://godbolt.org/z/nxaKecdxh) compares the exact before and after serializers with GCC 16.1 and Clang 22.1 at `-O2`, in both native and `-m32` modes.

  <details><summary>Benchmarks</summary>

  ```bash
  for cc in gcc clang; do \
    echo; $cc --version | head -1; \
    CC=$cc cmake -B build-$cc -GNinja -DCMAKE_BUILD_TYPE=Release >/dev/null 2>&1 && \
    CC=$cc cmake -B build-$cc-10x26 -GNinja -DCMAKE_BUILD_TYPE=Release -DSECP256K1_TEST_OVERRIDE_WIDE_MULTIPLY=int64 >/dev/null 2>&1 && \
    for build in build-$cc build-$cc-10x26; do \
      echo; echo $build; \
      for rev in ebf594320d e217ead5c46062ecda964ba858f7518b7e3bb5e7; do \
        git fetch origin -q $rev && git checkout -q $rev && \
        ninja -C $build bench >/dev/null 2>&1 && \
        echo $rev && \
        SECP256K1_BENCH_ITERS=10000 $build/bin/bench; \
      done; \
    done; \
  done
  ```

  ```bash
  gcc (Ubuntu 15.2.0-16ubuntu1) 15.2.0

  build-gcc
  ebf594320d
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    33.9       ,    34.0       ,    34.0
  ecdsa_sign                    ,    21.6       ,    21.6       ,    21.6
  ec_keygen                     ,    15.2       ,    15.2       ,    15.3
  ecdh                          ,    33.4       ,    33.5       ,    33.5
  schnorrsig_sign               ,    16.1       ,    16.1       ,    16.2
  schnorrsig_verify             ,    34.3       ,    34.3       ,    34.4
  ellswift_encode               ,    16.2       ,    16.2       ,    16.2
  ellswift_decode               ,     7.21      ,     7.22      ,     7.24
  ellswift_keygen               ,    31.5       ,    31.5       ,    31.5
  ellswift_ecdh                 ,    36.0       ,    36.1       ,    36.1
  e217ead5c4
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    34.0       ,    34.1       ,    34.4
  ecdsa_sign                    ,    21.6       ,    21.6       ,    21.6
  ec_keygen                     ,    15.3       ,    15.3       ,    15.3
  ecdh                          ,    33.3       ,    33.4       ,    33.6
  schnorrsig_sign               ,    16.1       ,    16.1       ,    16.2
  schnorrsig_verify             ,    34.4       ,    34.4       ,    34.5
  ellswift_encode               ,    16.3       ,    16.3       ,    16.3
  ellswift_decode               ,     7.24      ,     7.24      ,     7.25
  ellswift_keygen               ,    31.5       ,    31.6       ,    31.7
  ellswift_ecdh                 ,    36.0       ,    36.1       ,    36.1

  build-gcc-10x26
  ebf594320d
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    58.4       ,    58.5       ,    58.5
  ecdsa_sign                    ,    29.7       ,    29.8       ,    29.8
  ec_keygen                     ,    22.3       ,    22.4       ,    22.5
  ecdh                          ,    56.0       ,    56.1       ,    56.2
  schnorrsig_sign               ,    23.4       ,    23.4       ,    23.5
  schnorrsig_verify             ,    58.9       ,    59.0       ,    59.1
  ellswift_encode               ,    22.7       ,    22.7       ,    22.7
  ellswift_decode               ,    10.8       ,    10.8       ,    10.8
  ellswift_keygen               ,    45.1       ,    45.2       ,    45.3
  ellswift_ecdh                 ,    59.6       ,    59.7       ,    59.8
  e217ead5c4
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    58.5       ,    58.6       ,    58.7
  ecdsa_sign                    ,    29.8       ,    29.8       ,    29.9
  ec_keygen                     ,    22.3       ,    22.4       ,    22.4
  ecdh                          ,    56.0       ,    56.1       ,    56.4
  schnorrsig_sign               ,    23.5       ,    23.5       ,    23.5
  schnorrsig_verify             ,    58.9       ,    59.0       ,    59.1
  ellswift_encode               ,    22.9       ,    22.9       ,    22.9
  ellswift_decode               ,    10.8       ,    10.8       ,    10.8
  ellswift_keygen               ,    45.2       ,    45.3       ,    45.4
  ellswift_ecdh                 ,    59.6       ,    59.8       ,    59.9

  Ubuntu clang version 21.1.8 (6ubuntu1)

  build-clang
  ebf594320d
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    36.2       ,    36.3       ,    36.7
  ecdsa_sign                    ,    23.1       ,    23.1       ,    23.2
  ec_keygen                     ,    16.6       ,    16.7       ,    16.7
  ecdh                          ,    35.6       ,    35.7       ,    35.7
  schnorrsig_sign               ,    17.6       ,    17.6       ,    17.6
  schnorrsig_verify             ,    36.6       ,    36.7       ,    36.9
  ellswift_encode               ,    16.6       ,    16.6       ,    16.7
  ellswift_decode               ,     7.28      ,     7.29      ,     7.30
  ellswift_keygen               ,    33.2       ,    33.2       ,    33.3
  ellswift_ecdh                 ,    38.5       ,    38.5       ,    38.6
  e217ead5c4
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    35.5       ,    35.6       ,    35.8
  ecdsa_sign                    ,    23.0       ,    23.1       ,    23.2
  ec_keygen                     ,    16.6       ,    16.7       ,    16.8
  ecdh                          ,    35.7       ,    35.7       ,    35.8
  schnorrsig_sign               ,    17.6       ,    17.6       ,    17.7
  schnorrsig_verify             ,    35.9       ,    35.9       ,    36.0
  ellswift_encode               ,    16.4       ,    16.4       ,    16.4
  ellswift_decode               ,     7.22      ,     7.22      ,     7.23
  ellswift_keygen               ,    33.0       ,    33.0       ,    33.1
  ellswift_ecdh                 ,    38.5       ,    38.6       ,    38.8

  build-clang-10x26
  ebf594320d
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    64.2       ,    64.3       ,    64.7
  ecdsa_sign                    ,    33.8       ,    33.9       ,    33.9
  ec_keygen                     ,    26.3       ,    26.3       ,    26.3
  ecdh                          ,    63.4       ,    63.6       ,    63.8
  schnorrsig_sign               ,    27.2       ,    27.3       ,    27.3
  schnorrsig_verify             ,    64.5       ,    64.6       ,    64.7
  ellswift_encode               ,    22.1       ,    22.1       ,    22.1
  ellswift_decode               ,    10.6       ,    10.6       ,    10.7
  ellswift_keygen               ,    48.3       ,    48.3       ,    48.5
  ellswift_ecdh                 ,    67.0       ,    67.0       ,    67.1
  e217ead5c4
  Benchmark                     ,    Min(us)    ,    Avg(us)    ,    Max(us)

  ecdsa_verify                  ,    63.9       ,    64.0       ,    64.3
  ecdsa_sign                    ,    33.8       ,    33.9       ,    34.0
  ec_keygen                     ,    26.3       ,    26.3       ,    26.3
  ecdh                          ,    62.5       ,    62.5       ,    62.6
  schnorrsig_sign               ,    27.2       ,    27.3       ,    27.4
  schnorrsig_verify             ,    64.1       ,    64.2       ,    64.2
  ellswift_encode               ,    22.1       ,    22.2       ,    22.3
  ellswift_decode               ,    10.6       ,    10.7       ,    10.7
  ellswift_keygen               ,    48.4       ,    48.4       ,    48.6
  ellswift_ecdh                 ,    66.2       ,    66.3       ,    66.4
  ```
  </details>

ACKs for top commit:
  real-or-random:
    utACK e217ead5c4
  theStack:
    ACK e217ead5c4

Tree-SHA512: 9a92a8d8682e5fd1ac40cab097770741fb78fc6de7c54edf24bd0796bc06b1ec1c375c996099fdaf228a56788208faa6aae107a53b15d596d19f047a5f1a30e6
2026-07-18 00:46:21 +02:00
2026-07-13 00:10:38 -07:00
2013-05-09 15:24:32 +02:00
2026-07-09 22:26:11 +02:00

libsecp256k1

Dependencies: None irc.libera.chat #secp256k1

High-performance high-assurance C library for digital signatures and other cryptographic primitives on the secp256k1 elliptic curve.

This library is intended to be the highest quality publicly available library for cryptography on the secp256k1 curve. However, the primary focus of its development has been for usage in the Bitcoin system and usage unlike Bitcoin's may be less well tested, verified, or suffer from a less well thought out interface. Correct usage requires some care and consideration that the library is fit for your application's purpose.

Features:

  • secp256k1 ECDSA signing/verification and key generation.
  • Additive and multiplicative tweaking of secret/public keys.
  • Serialization/parsing of secret keys, public keys, signatures.
  • Constant time, constant memory access signing and public key generation.
  • Derandomized ECDSA (via RFC6979 or with a caller provided function.)
  • Very efficient implementation.
  • Suitable for embedded systems.
  • No runtime dependencies.
  • Optional module for public key recovery.
  • Optional module for ECDH key exchange.
  • Optional module for Schnorr signatures according to BIP-340.
  • Optional module for ElligatorSwift key exchange according to BIP-324.
  • Optional module for MuSig2 Schnorr multi-signatures according to BIP-327.

Implementation details

  • General
    • No runtime heap allocation.
    • Extensive testing infrastructure.
    • Structured to facilitate review and analysis.
    • Intended to be portable to any system with a C89 compiler and uint64_t support.
    • No use of floating types.
    • Expose only higher level interfaces to minimize the API surface and improve application security. ("Be difficult to use insecurely.")
  • Field operations
    • Optimized implementation of arithmetic modulo the curve's field size (2^256 - 0x1000003D1).
      • Using 5 52-bit limbs
      • Using 10 26-bit limbs (including hand-optimized assembly for 32-bit ARM, by Wladimir J. van der Laan).
        • This is an experimental feature that has not received enough scrutiny to satisfy the standard of quality of this library but is made available for testing and review by the community.
  • Scalar operations
    • Optimized implementation without data-dependent branches of arithmetic modulo the curve's order.
      • Using 4 64-bit limbs (relying on __int128 support in the compiler).
      • Using 8 32-bit limbs.
  • Modular inverses (both field elements and scalars) based on safegcd with some modifications, and a variable-time variant (by Peter Dettman).
  • Group operations
    • Point addition formula specifically simplified for the curve equation (y^2 = x^3 + 7).
    • Use addition between points in Jacobian and affine coordinates where possible.
    • Use a unified addition/doubling formula where necessary to avoid data-dependent branches.
    • Point/x comparison without a field inversion by comparison in the Jacobian coordinate space.
  • Point multiplication for verification (aP + bG).
    • Use wNAF notation for point multiplicands.
    • Use a much larger window for multiples of G, using precomputed multiples.
    • Use Shamir's trick to do the multiplication with the public key and the generator simultaneously.
    • Use secp256k1's efficiently-computable endomorphism to split the P multiplicand into 2 half-sized ones.
  • Point multiplication for signing
    • Use a precomputed table of multiples of powers of 16 multiplied with the generator, so general multiplication becomes a series of additions.
    • Intended to be completely free of timing sidechannels for secret-key operations (on reasonable hardware/toolchains)
      • Access the table with branch-free conditional moves so memory access is uniform.
      • No data-dependent branches
    • Optional runtime blinding which attempts to frustrate differential power analysis.
    • The precomputed tables add and eventually subtract points for which no known scalar (secret key) is known, preventing even an attacker with control over the secret key used to control the data internally.

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.
  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.
    git checkout v0.7.1
    
  5. Use git to verify the GPG signature:
    % git tag -v v0.7.1 | grep -C 3 'Good signature'
    
    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]
    gpg: WARNING: This key is not certified with a trusted signature!
    gpg:          There is no indication that the signature belongs to the owner.
    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
    

Building with Autotools

$ ./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)

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.

Building with CMake

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

$ 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)

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.

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 -B build -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 -B build -DCMAKE_TOOLCHAIN_FILE="${ANDROID_NDK_ROOT}/build/cmake/android.toolchain.cmake" -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=28

Building on Windows

The following example assumes Visual Studio 2022. Using clang-cl is recommended.

In "Developer Command Prompt for VS 2022":

>cmake -B build -T ClangCL
>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 examples, make sure the corresponding modules are enabled.

Benchmark

If configured with --enable-benchmark (which is the default), binaries for benchmarking the libsecp256k1 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

S
Description
No description provided
Readme 39 MiB
Languages
C 92.3%
Sage 1.8%
CMake 1.5%
Python 1.3%
Assembly 1.2%
Other 1.9%