| 45 | } |
| 46 | |
| 47 | int main(void) { |
| 48 | bench_sign_t data; |
| 49 | |
| 50 | data.ctx = secp256k1_context_create(SECP256K1_CONTEXT_SIGN); |
| 51 | |
| 52 | run_benchmark("ecdsa_sign", bench_sign, bench_sign_setup, NULL, &data, 10, 20000); |
| 53 | |
| 54 | secp256k1_context_destroy(data.ctx); |
| 55 | return 0; |
| 56 | } |
nothing calls this directly
no test coverage detected