Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
bench_impl.h File Reference
Include dependency graph for bench_impl.h:

Go to the source code of this file.

Classes

struct  bench_schnorrsig_data
 

Macros

#define MSGLEN   32
 

Functions

void bench_schnorrsig_sign (void *arg, int iters)
 
void bench_schnorrsig_verify (void *arg, int iters)
 
void run_schnorrsig_bench (int iters, int argc, char **argv)
 

Macro Definition Documentation

◆ MSGLEN

#define MSGLEN   32

Definition at line 12 of file bench_impl.h.

Function Documentation

◆ bench_schnorrsig_sign()

void bench_schnorrsig_sign ( void * arg,
int iters )

Definition at line 24 of file bench_impl.h.

24 {
26 int i;
27 unsigned char msg[MSGLEN] = {0};
28 unsigned char sig[64];
29
30 for (i = 0; i < iters; i++) {
31 msg[0] = i;
32 msg[1] = i >> 8;
33 CHECK(secp256k1_schnorrsig_sign_custom(data->ctx, sig, msg, MSGLEN, data->keypairs[i], NULL));
34 }
35}
#define CHECK(cond)
Definition util.h:80
#define MSGLEN
Definition bench_impl.h:12
SECP256K1_API int secp256k1_schnorrsig_sign_custom(const secp256k1_context *ctx, unsigned char *sig64, const unsigned char *msg, size_t msglen, const secp256k1_keypair *keypair, secp256k1_schnorrsig_extraparams *extraparams) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(5)
Definition main_impl.h:204
Here is the call graph for this function:
Here is the caller graph for this function:

◆ bench_schnorrsig_verify()

void bench_schnorrsig_verify ( void * arg,
int iters )

Definition at line 37 of file bench_impl.h.

37 {
39 int i;
40
41 for (i = 0; i < iters; i++) {
43 CHECK(secp256k1_xonly_pubkey_parse(data->ctx, &pk, data->pk[i]) == 1);
44 CHECK(secp256k1_schnorrsig_verify(data->ctx, data->sigs[i], data->msgs[i], MSGLEN, &pk));
45 }
46}
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_xonly_pubkey_parse(const secp256k1_context *ctx, secp256k1_xonly_pubkey *pubkey, const unsigned char *input32) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Definition main_impl.h:21
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_schnorrsig_verify(const secp256k1_context *ctx, const unsigned char *sig64, const unsigned char *msg, size_t msglen, const secp256k1_xonly_pubkey *pubkey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(5)
Definition main_impl.h:219
Here is the call graph for this function:
Here is the caller graph for this function:

◆ run_schnorrsig_bench()

void run_schnorrsig_bench ( int iters,
int argc,
char ** argv )

Definition at line 48 of file bench_impl.h.

48 {
49 int i;
51 int d = argc == 1;
52
54 data.keypairs = (const secp256k1_keypair **)malloc(iters * sizeof(secp256k1_keypair *));
55 data.pk = (const unsigned char **)malloc(iters * sizeof(unsigned char *));
56 data.msgs = (const unsigned char **)malloc(iters * sizeof(unsigned char *));
57 data.sigs = (const unsigned char **)malloc(iters * sizeof(unsigned char *));
58
59 CHECK(MSGLEN >= 4);
60 for (i = 0; i < iters; i++) {
61 unsigned char sk[32];
62 unsigned char *msg = (unsigned char *)malloc(MSGLEN);
63 unsigned char *sig = (unsigned char *)malloc(64);
64 secp256k1_keypair *keypair = (secp256k1_keypair *)malloc(sizeof(*keypair));
65 unsigned char *pk_char = (unsigned char *)malloc(32);
67 msg[0] = sk[0] = i;
68 msg[1] = sk[1] = i >> 8;
69 msg[2] = sk[2] = i >> 16;
70 msg[3] = sk[3] = i >> 24;
71 memset(&msg[4], 'm', MSGLEN - 4);
72 memset(&sk[4], 's', 28);
73
74 data.keypairs[i] = keypair;
75 data.pk[i] = pk_char;
76 data.msgs[i] = msg;
77 data.sigs[i] = sig;
78
79 CHECK(secp256k1_keypair_create(data.ctx, keypair, sk));
80 CHECK(secp256k1_schnorrsig_sign_custom(data.ctx, sig, msg, MSGLEN, keypair, NULL));
81 CHECK(secp256k1_keypair_xonly_pub(data.ctx, &pk, NULL, keypair));
82 CHECK(secp256k1_xonly_pubkey_serialize(data.ctx, pk_char, &pk) == 1);
83 }
84
85 if (d || have_flag(argc, argv, "schnorrsig") || have_flag(argc, argv, "sign") || have_flag(argc, argv, "schnorrsig_sign")) run_benchmark("schnorrsig_sign", bench_schnorrsig_sign, NULL, NULL, (void *) &data, 10, iters);
86 if (d || have_flag(argc, argv, "schnorrsig") || have_flag(argc, argv, "verify") || have_flag(argc, argv, "schnorrsig_verify")) run_benchmark("schnorrsig_verify", bench_schnorrsig_verify, NULL, NULL, (void *) &data, 10, iters);
87
88 for (i = 0; i < iters; i++) {
89 free((void *)data.keypairs[i]);
90 free((void *)data.pk[i]);
91 free((void *)data.msgs[i]);
92 free((void *)data.sigs[i]);
93 }
94 free(data.keypairs);
95 free(data.pk);
96 free(data.msgs);
97 free(data.sigs);
98
100}
int have_flag(int argc, char **argv, char *flag)
Definition bench.h:116
void run_benchmark(char *name, void(*benchmark)(void *, int), void(*setup)(void *), void(*teardown)(void *, int), void *data, int count, int iter)
Definition bench.h:82
char ** argv
void bench_schnorrsig_sign(void *arg, int iters)
Definition bench_impl.h:24
void bench_schnorrsig_verify(void *arg, int iters)
Definition bench_impl.h:37
SECP256K1_API void secp256k1_context_destroy(secp256k1_context *ctx) SECP256K1_ARG_NONNULL(1)
Definition secp256k1.c:146
#define SECP256K1_CONTEXT_SIGN
Definition secp256k1.h:196
SECP256K1_API secp256k1_context * secp256k1_context_create(unsigned int flags) SECP256K1_WARN_UNUSED_RESULT
Definition secp256k1.c:107
#define SECP256K1_CONTEXT_VERIFY
Definition secp256k1.h:195
SECP256K1_API int secp256k1_xonly_pubkey_serialize(const secp256k1_context *ctx, unsigned char *output32, const secp256k1_xonly_pubkey *pubkey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Definition main_impl.h:43
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_keypair_create(const secp256k1_context *ctx, secp256k1_keypair *keypair, const unsigned char *seckey) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3)
Definition main_impl.h:195
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_keypair_xonly_pub(const secp256k1_context *ctx, secp256k1_xonly_pubkey *pubkey, int *pk_parity, const secp256k1_keypair *keypair) SECP256K1_ARG_NONNULL(1) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(4)
Definition main_impl.h:233
CK_ULONG d
memset(pInfo->slotDescription, ' ', 64)
Here is the call graph for this function:
Here is the caller graph for this function: