20 #ifndef RIPPLE_PROTOCOL_SECP256K1_H_INCLUDED
21 #define RIPPLE_PROTOCOL_SECP256K1_H_INCLUDED
23 #include <secp256k1/include/secp256k1.h>
27 template <
class =
void>
28 secp256k1_context
const*
33 secp256k1_context* impl;
35 : impl(secp256k1_context_create(
36 SECP256K1_CONTEXT_VERIFY | SECP256K1_CONTEXT_SIGN))
42 secp256k1_context_destroy(impl);
45 static holder
const h;