6ad5cdb Merge #479: Get rid of reserved _t in type names d1dc9df Get rid of reserved _t in type names 0b70241 Merge #474: Fix header guards using reserved identifiers ab1f89f Merge #478: Fixed multiple typos 8c7ea22 Fixed multiple typos abe2d3e Fix header guards using reserved identifiers f532bdc Merge #459: Add pubkey prefix constants to include/secp256k1.h cac7c55 Merge #470: Fix wnaf_const documentation 768514b Fix wnaf_const documentation with respect to return value and number of words set b8c26a3 Merge #458: Fix typo in API documentation 817fb20 Merge #440: Fix typos 12230f9 Merge #468: Remove redundant conditional expression 2e1ccdc Remove redundant conditional expression bc61b91 add pubkey prefix constants to include/secp256k1.h b0452e6 Fix typo in API documentation 4c0f32e Fix typo: "Agressive" → "Aggressive" 73aca83 Fix typo: "exectured" → "executed" git-subtree-dir: src/secp256k1 git-subtree-split: 6ad5cdb42a1a8257289a0423d644dcbdeab0f83c
57 lines
1.6 KiB
C
57 lines
1.6 KiB
C
/**********************************************************************
|
|
* 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 "include/secp256k1.h"
|
|
#include "util.h"
|
|
#include "bench.h"
|
|
|
|
typedef struct {
|
|
secp256k1_context* ctx;
|
|
unsigned char msg[32];
|
|
unsigned char key[32];
|
|
} bench_sign;
|
|
|
|
static void bench_sign_setup(void* arg) {
|
|
int i;
|
|
bench_sign *data = (bench_sign*)arg;
|
|
|
|
for (i = 0; i < 32; i++) {
|
|
data->msg[i] = i + 1;
|
|
}
|
|
for (i = 0; i < 32; i++) {
|
|
data->key[i] = i + 65;
|
|
}
|
|
}
|
|
|
|
static void bench_sign_run(void* arg) {
|
|
int i;
|
|
bench_sign *data = (bench_sign*)arg;
|
|
|
|
unsigned char sig[74];
|
|
for (i = 0; i < 20000; i++) {
|
|
size_t siglen = 74;
|
|
int j;
|
|
secp256k1_ecdsa_signature signature;
|
|
CHECK(secp256k1_ecdsa_sign(data->ctx, &signature, data->msg, data->key, NULL, NULL));
|
|
CHECK(secp256k1_ecdsa_signature_serialize_der(data->ctx, sig, &siglen, &signature));
|
|
for (j = 0; j < 32; j++) {
|
|
data->msg[j] = sig[j];
|
|
data->key[j] = sig[j + 32];
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(void) {
|
|
bench_sign data;
|
|
|
|
data.ctx = secp256k1_context_create(SECP256K1_CONTEXT_SIGN);
|
|
|
|
run_benchmark("ecdsa_sign", bench_sign_run, bench_sign_setup, NULL, &data, 10, 20000);
|
|
|
|
secp256k1_context_destroy(data.ctx);
|
|
return 0;
|
|
}
|