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 **********************************************************************/
7 #ifndef _SECP256K1_ECMULT_GEN_
8 #define _SECP256K1_ECMULT_GEN_
13 static void secp256k1_ecmult_gen_start(void);
14 static void secp256k1_ecmult_gen_stop(void);
16 /** Multiply with the generator: R = a*G */
17 static void secp256k1_ecmult_gen(secp256k1_gej_t *r, const secp256k1_scalar_t *a);