17     unsigned char scalar[32];
    20 static void bench_ecdh_setup(
void* arg) {
    23     const unsigned char point[] = {
    25         0x54, 0x94, 0xc1, 0x5d, 0x32, 0x09, 0x97, 0x06,
    26         0xc2, 0x39, 0x5f, 0x94, 0x34, 0x87, 0x45, 0xfd,
    27         0x75, 0x7c, 0xe3, 0x0e, 0x4e, 0x8c, 0x90, 0xfb,
    28         0xa2, 0xba, 0xd1, 0x84, 0xf8, 0x83, 0xc6, 0x9f
    33     for (i = 0; i < 32; i++) {
    39 static void bench_ecdh(
void* arg) {
    41     unsigned char res[32];
    44     for (i = 0; i < 20000; i++) {
    52     run_benchmark(
"ecdh", bench_ecdh, bench_ecdh_setup, NULL, &data, 10, 20000);
 
#define SECP256K1_FLAGS_TYPE_CONTEXT
 
void run_benchmark(char *name, void(*benchmark)(void *), void(*setup)(void *), void(*teardown)(void *), void *data, int count, int iter)
 
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_parse(const secp256k1_context *ctx, secp256k1_pubkey *pubkey, const unsigned char *input, size_t inputlen) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Parse a variable-length public key into the pubkey object. 
 
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ecdh(const secp256k1_context *ctx, unsigned char *result, const secp256k1_pubkey *pubkey, const unsigned char *privkey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3) SECP256K1_ARG_NONNULL(4)
Compute an EC Diffie-Hellman secret in constant time Returns: 1: exponentiation was successful 0: sca...
 
SECP256K1_API secp256k1_context * secp256k1_context_create(unsigned int flags) SECP256K1_WARN_UNUSED_RESULT
Create a secp256k1 context object. 
 
Opaque data structure that holds a parsed and valid public key.