Fourth step in converting to C: ecmult

This commit is contained in:
Pieter Wuille
2013-04-01 06:29:30 +02:00
parent f11ff5be70
commit b1483f874c
7 changed files with 206 additions and 402 deletions

View File

@@ -12,6 +12,7 @@ int main() {
secp256k1_num_start();
secp256k1_fe_start();
secp256k1_ge_start();
secp256k1_ecmult_start();
secp256k1_fe_t x;
const secp256k1_num_t *order = &secp256k1_ge_consts->order;
@@ -39,6 +40,7 @@ int main() {
secp256k1_num_free(&s);
secp256k1_num_free(&m);
secp256k1_ecmult_stop();
secp256k1_ge_stop();
secp256k1_fe_stop();
secp256k1_num_stop();