secp256k1-zkp/src/bench_sign.c

49 lines
1.5 KiB
C
Raw Normal View History

/**********************************************************************
* 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.*
**********************************************************************/
2014-10-31 08:23:34 -07:00
#include "include/secp256k1.h"
#include "util.h"
2014-12-04 20:26:54 +01:00
#include "bench.h"
2014-10-31 08:23:34 -07:00
2014-12-04 20:26:54 +01:00
typedef struct {
2014-10-31 08:23:34 -07:00
unsigned char msg[32];
unsigned char nonce[32];
unsigned char key[32];
2014-12-04 20:26:54 +01:00
} bench_sign_t;
2014-10-31 08:23:34 -07:00
2014-12-04 20:26:54 +01:00
static void bench_sign_setup(void* arg) {
bench_sign_t *data = (bench_sign_t*)arg;
2014-10-31 08:23:34 -07:00
2014-12-04 20:26:54 +01:00
for (int i = 0; i < 32; i++) data->msg[i] = i + 1;
for (int i = 0; i < 32; i++) data->nonce[i] = i + 33;
for (int i = 0; i < 32; i++) data->key[i] = i + 65;
}
static void bench_sign(void* arg) {
bench_sign_t *data = (bench_sign_t*)arg;
2014-10-31 08:23:34 -07:00
2014-12-04 20:26:54 +01:00
unsigned char sig[64];
for (int i=0; i<20000; i++) {
2014-10-31 08:23:34 -07:00
int recid = 0;
2014-12-04 20:26:54 +01:00
CHECK(secp256k1_ecdsa_sign_compact(data->msg, 32, sig, data->key, data->nonce, &recid));
2014-10-31 08:23:34 -07:00
for (int j = 0; j < 32; j++) {
2014-12-04 20:26:54 +01:00
data->nonce[j] = data->key[j]; /* Move former key to nonce */
data->msg[j] = sig[j]; /* Move former R to message. */
data->key[j] = sig[j + 32]; /* Move former S to key. */
2014-10-31 08:23:34 -07:00
}
}
2014-12-04 20:26:54 +01:00
}
int main(void) {
secp256k1_start(SECP256K1_START_SIGN);
2014-10-31 08:23:34 -07:00
2014-12-04 20:26:54 +01:00
bench_sign_t data;
run_benchmark(bench_sign, bench_sign_setup, NULL, &data, 10, 20000);
2014-10-31 08:23:34 -07:00
secp256k1_stop();
return 0;
}