From 0f8614421eb515dc7fd48a2aaf48ddd4651e5582 Mon Sep 17 00:00:00 2001 From: John Newby Date: Thu, 1 Aug 2019 16:25:16 +0200 Subject: [PATCH] Added C++ compatible header, for fun --- include/ecrecover.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 include/ecrecover.hpp diff --git a/include/ecrecover.hpp b/include/ecrecover.hpp new file mode 100644 index 0000000..4732795 --- /dev/null +++ b/include/ecrecover.hpp @@ -0,0 +1,10 @@ +#include +#include +#include +#include + +extern "C" { + +void ecrecover(const unsigned char *input, unsigned char *output); + +} // extern "C"