forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
168 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/********************************************************************** | ||
* Copyright (c) 2014 Pieter Wuille * | ||
* Distributed under the MIT software license, see the accompanying * | ||
* file COPYING or http://www.opensource.org/licenses/mit-license.php.* | ||
**********************************************************************/ | ||
|
||
#ifndef _SECP256K1_BENCH_H_ | ||
#define _SECP256K1_BENCH_H_ | ||
|
||
#include <stdio.h> | ||
#include <math.h> | ||
#include "sys/time.h" | ||
|
||
static double gettimedouble(void) { | ||
struct timeval tv; | ||
gettimeofday(&tv, NULL); | ||
return tv.tv_usec * 0.000001 + tv.tv_sec; | ||
} | ||
|
||
void run_benchmark(void (*benchmark)(void*), void (*setup)(void*), void (*teardown)(void*), void* data, int count, int iter) { | ||
double min = HUGE_VAL; | ||
double sum = 0.0; | ||
double max = 0.0; | ||
for (int i = 0; i < count; i++) { | ||
if (setup) setup(data); | ||
double begin = gettimedouble(); | ||
benchmark(data); | ||
double total = gettimedouble() - begin; | ||
if (teardown) teardown(data); | ||
if (total < min) min = total; | ||
if (total > max) max = total; | ||
sum += total; | ||
} | ||
printf("min %.3fus / avg %.3fus / max %.3fus\n", min * 1000000.0 / iter, (sum / count) * 1000000.0 / iter, max * 1000000.0 / iter); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/********************************************************************** | ||
* Copyright (c) 2014 Pieter Wuille * | ||
* Distributed under the MIT software license, see the accompanying * | ||
* file COPYING or http://www.opensource.org/licenses/mit-license.php.* | ||
**********************************************************************/ | ||
|
||
#include <stdio.h> | ||
#include <string.h> | ||
|
||
#include "include/secp256k1.h" | ||
#include "util.h" | ||
#include "bench.h" | ||
|
||
typedef struct { | ||
unsigned char msg[32]; | ||
unsigned char key[32]; | ||
unsigned char nonce[32]; | ||
unsigned char sig[72]; | ||
int siglen; | ||
unsigned char pubkey[33]; | ||
int pubkeylen; | ||
} benchmark_verify_t; | ||
|
||
static void benchmark_verify(void* arg) { | ||
benchmark_verify_t* data = (benchmark_verify_t*)arg; | ||
|
||
for (int i=0; i<20000; i++) { | ||
data->sig[data->siglen - 1] ^= (i & 0xFF); | ||
data->sig[data->siglen - 2] ^= ((i >> 8) & 0xFF); | ||
data->sig[data->siglen - 3] ^= ((i >> 16) & 0xFF); | ||
CHECK(secp256k1_ecdsa_verify(data->msg, 32, data->sig, data->siglen, data->pubkey, data->pubkeylen) == (i == 0)); | ||
data->sig[data->siglen - 1] ^= (i & 0xFF); | ||
data->sig[data->siglen - 2] ^= ((i >> 8) & 0xFF); | ||
data->sig[data->siglen - 3] ^= ((i >> 16) & 0xFF); | ||
} | ||
} | ||
|
||
int main(void) { | ||
secp256k1_start(SECP256K1_START_VERIFY | SECP256K1_START_SIGN); | ||
|
||
benchmark_verify_t data; | ||
|
||
for (int i = 0; i < 32; i++) data.msg[i] = 1 + i; | ||
for (int i = 0; i < 32; i++) data.key[i] = 33 + i; | ||
for (int i = 0; i < 32; i++) data.nonce[i] = 65 + i; | ||
data.siglen = 72; | ||
CHECK(secp256k1_ecdsa_sign(data.msg, 32, data.sig, &data.siglen, data.key, data.nonce)); | ||
data.pubkeylen = 33; | ||
CHECK(secp256k1_ec_pubkey_create(data.pubkey, &data.pubkeylen, data.key, 1)); | ||
|
||
run_benchmark(benchmark_verify, NULL, NULL, &data, 10, 20000); | ||
|
||
secp256k1_stop(); | ||
return 0; | ||
} |