You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A fork of [libsecp256k1](https://github.com/bitcoin-core/secp256k1) with support for advanced and experimental features such as Confidential Assets and MuSig2
7
8
@@ -30,7 +31,14 @@ To compile optional modules (such as Schnorr signatures), you need to run `./con
30
31
31
32
Usage examples
32
33
-----------
33
-
Usage examples can be found in the [examples](examples) directory. To compile them you need to configure with `--enable-examples`.
34
+
35
+
Usage examples can be found in the [examples](examples) directory. To compile them you need to configure with `--enable-examples`.
36
+
*[ECDSA example](examples/ecdsa.c)
37
+
*[Schnorr signatures example](examples/schnorr.c)
38
+
*[Deriving a shared secret (ECDH) example](examples/ecdh.c)
39
+
*[MuSig example](examples/musig.c)
40
+
41
+
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`.
0 commit comments