2014-11-15 15:28:10 +00:00
|
|
|
/**********************************************************************
|
|
|
|
* 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.*
|
|
|
|
**********************************************************************/
|
2013-05-05 00:21:03 +02:00
|
|
|
|
2014-09-29 08:20:07 +02:00
|
|
|
#include "include/secp256k1.h"
|
2014-10-31 03:15:25 -07:00
|
|
|
#include "util.h"
|
2014-12-04 20:26:54 +01:00
|
|
|
#include "bench.h"
|
2013-04-20 23:34:41 +02:00
|
|
|
|
2014-12-04 20:26:54 +01:00
|
|
|
typedef struct {
|
2014-10-31 03:15:25 -07:00
|
|
|
unsigned char msg[32];
|
|
|
|
unsigned char sig[64];
|
2014-12-04 20:26:54 +01:00
|
|
|
} bench_recover_t;
|
2014-10-31 03:15:25 -07:00
|
|
|
|
2014-12-04 20:26:54 +01:00
|
|
|
void bench_recover(void* arg) {
|
|
|
|
bench_recover_t *data = (bench_recover_t*)arg;
|
2014-10-31 03:15:25 -07:00
|
|
|
|
|
|
|
unsigned char pubkey[33];
|
2014-12-04 20:26:54 +01:00
|
|
|
for (int i=0; i<20000; i++) {
|
2014-10-31 03:15:25 -07:00
|
|
|
int pubkeylen = 33;
|
2014-12-09 12:50:47 +01:00
|
|
|
CHECK(secp256k1_ecdsa_recover_compact(data->msg, data->sig, pubkey, &pubkeylen, 1, i % 2));
|
2014-10-31 03:15:25 -07:00
|
|
|
for (int j = 0; j < 32; j++) {
|
2014-12-04 20:26:54 +01:00
|
|
|
data->sig[j + 32] = data->msg[j]; /* Move former message to S. */
|
|
|
|
data->msg[j] = data->sig[j]; /* Move former R to message. */
|
|
|
|
data->sig[j] = pubkey[j + 1]; /* Move recovered pubkey X coordinate to R (which must be a valid X coordinate). */
|
2014-10-31 03:15:25 -07:00
|
|
|
}
|
2014-09-29 08:20:07 +02:00
|
|
|
}
|
2014-12-04 20:26:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void bench_recover_setup(void* arg) {
|
|
|
|
bench_recover_t *data = (bench_recover_t*)arg;
|
|
|
|
|
|
|
|
for (int i = 0; i < 32; i++) data->msg[i] = 1 + i;
|
|
|
|
for (int i = 0; i < 64; i++) data->sig[i] = 65 + i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
secp256k1_start(SECP256K1_START_VERIFY);
|
2014-10-31 03:15:25 -07:00
|
|
|
|
2014-12-04 20:26:54 +01:00
|
|
|
bench_recover_t data;
|
|
|
|
run_benchmark(bench_recover, bench_recover_setup, NULL, &data, 10, 20000);
|
2013-03-30 22:32:16 +01:00
|
|
|
|
2014-09-29 08:20:07 +02:00
|
|
|
secp256k1_stop();
|
2013-03-16 15:51:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|