secp256k1-zkp/README.md

64 lines
2.5 KiB
Markdown
Raw Normal View History

2023-04-21 12:38:34 +02:00
libsecp256k1-zkp
================
2022-08-02 10:38:28 +02:00
![Dependencies: None](https://img.shields.io/badge/dependencies-none-success)
2023-04-21 12:38:34 +02:00
A fork of [libsecp256k1](https://github.com/bitcoin-core/secp256k1) 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](src/modules/musig/musig.md).
* Experimental module for Confidential Assets (Pedersen commitments, range proofs, and [surjection proofs](src/modules/surjection/surjection.md)).
* Experimental module for Bulletproofs++ range proofs.
* Experimental module for [address whitelisting](src/modules/whitelist/whitelist.md).
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
-----------------------
2014-06-21 00:07:37 +02:00
$ ./autogen.sh
$ ./configure
$ make
$ make check # run the test suite
$ sudo make install # optional
2023-04-21 12:38:34 +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-musig`.
2020-04-30 15:08:50 +03:00
Usage examples
-----------
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)
* [Schnorr signatures example](examples/schnorr.c)
* [Deriving a shared secret (ECDH) example](examples/ecdh.c)
* [MuSig example](examples/musig.c)
2022-08-02 10:38:56 +02:00
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`.
2020-04-30 15:08:50 +03:00
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.
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)
Contributing to libsecp256k1
------------
See [CONTRIBUTING.md](CONTRIBUTING.md)