27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/*********************************************************************************
|
|
* Copyright (c) 2013, 2014, 2015, 2021 Thomas Daede, Cory Fields, Pieter Wuille *
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
* file COPYING or https://www.opensource.org/licenses/mit-license.php. *
|
|
*********************************************************************************/
|
|
|
|
#ifndef SECP256K1_PRECOMPUTED_ECMULT_GEN_H
|
|
#define SECP256K1_PRECOMPUTED_ECMULT_GEN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "group.h"
|
|
#include "ecmult_gen.h"
|
|
#ifdef EXHAUSTIVE_TEST_ORDER
|
|
static rustsecp256k1_v0_9_0_ge_storage rustsecp256k1_v0_9_0_ecmult_gen_prec_table[ECMULT_GEN_PREC_N(ECMULT_GEN_PREC_BITS)][ECMULT_GEN_PREC_G(ECMULT_GEN_PREC_BITS)];
|
|
#else
|
|
extern const rustsecp256k1_v0_9_0_ge_storage rustsecp256k1_v0_9_0_ecmult_gen_prec_table[ECMULT_GEN_PREC_N(ECMULT_GEN_PREC_BITS)][ECMULT_GEN_PREC_G(ECMULT_GEN_PREC_BITS)];
|
|
#endif /* defined(EXHAUSTIVE_TEST_ORDER) */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SECP256K1_PRECOMPUTED_ECMULT_GEN_H */
|