schnorrsig: Add benchmark for sign and verify

This commit is contained in:
Jonas Nick
2020-05-12 21:24:38 +00:00
parent 4e43520026
commit 8dfd53ee3f
2 changed files with 108 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
include_HEADERS += include/secp256k1_schnorrsig.h
noinst_HEADERS += src/modules/schnorrsig/main_impl.h
noinst_HEADERS += src/modules/schnorrsig/tests_impl.h
noinst_HEADERS += src/modules/schnorrsig/tests_impl.h
if USE_BENCHMARK
noinst_PROGRAMS += bench_schnorrsig
bench_schnorrsig_SOURCES = src/bench_schnorrsig.c
bench_schnorrsig_LDADD = libsecp256k1.la $(SECP_LIBS) $(COMMON_LIB)
endif