From 0be44b413257b19054494572c7fd91ecb00c2a48 Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Thu, 30 Apr 2020 15:08:50 +0300 Subject: [PATCH] Add usage examples to the readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index e070937235..07f8a7f1d8 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,13 @@ libsecp256k1 is built using autotools: $ make check $ sudo make install # optional +Usage Examples +----------- + Usage Examples can be found in the [examples](examples) directory: + * [ECDSA example](examples/ecdsa.c) + * [Schnorr Signatures example](examples/schnorr.c) + * [Deriving a shared secret(ECDH) example](examples/ecdh.c) + Exhaustive tests -----------