Move pubkey recovery code to separate module

This commit is contained in:
Pieter Wuille
2015-08-27 03:42:57 +02:00
parent d49abbd5a0
commit 9f443be086
11 changed files with 559 additions and 484 deletions

View File

@@ -0,0 +1,9 @@
include_HEADERS += include/secp256k1_recovery.h
noinst_HEADERS += src/modules/recovery/main_impl.h
noinst_HEADERS += src/modules/recovery/tests_impl.h
if USE_BENCHMARK
noinst_PROGRAMS += bench_recover
bench_recover_SOURCES = src/bench_recover.c
bench_recover_LDADD = libsecp256k1.la $(SECP_LIBS)
bench_recover_LDFLAGS = -static
endif