]> Git Repo - secp256k1.git/blob - src/ecmult_gen.h
Switch to C89 comments in prep for making the whole codebase C89 compatible.
[secp256k1.git] / src / ecmult_gen.h
1 /**********************************************************************
2  * Copyright (c) 2013, 2014 Pieter Wuille                             *
3  * Distributed under the MIT software license, see the accompanying   *
4  * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5  **********************************************************************/
6
7 #ifndef _SECP256K1_ECMULT_GEN_
8 #define _SECP256K1_ECMULT_GEN_
9
10 #include "scalar.h"
11 #include "group.h"
12
13 static void secp256k1_ecmult_gen_start(void);
14 static void secp256k1_ecmult_gen_stop(void);
15
16 /** Multiply with the generator: R = a*G */
17 static void secp256k1_ecmult_gen(secp256k1_gej_t *r, const secp256k1_scalar_t *a);
18
19 #endif
This page took 0.024746 seconds and 4 git commands to generate.