From b7077beee6a18b5e21d73a6d833e67ff9bb615c8 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 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 434178b372..4e6a0543ca 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,12 @@ libsecp256k1 is built using autotools: $ make check $ sudo make install # optional +Usage Examples +----------- + Usage Examples can be found in the [examples](examples) directory: + * [Key generation example](examples/keygen.c) + * [Deriving a shared secret(ECDH) example](examples/ecdh.c) + Exhaustive tests -----------