2020-12-17 08:33:49 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* Copyright (c) 2013, 2014 Pieter Wuille *
|
|
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
|
|
* file COPYING or https://www.opensource.org/licenses/mit-license.php.*
|
|
|
|
***********************************************************************/
|
2015-05-19 17:32:35 -07:00
|
|
|
|
2017-08-26 18:44:21 +03:00
|
|
|
#ifndef SECP256K1_BASIC_CONFIG_H
|
|
|
|
#define SECP256K1_BASIC_CONFIG_H
|
2015-05-19 17:32:35 -07:00
|
|
|
|
|
|
|
#ifdef USE_BASIC_CONFIG
|
|
|
|
|
2019-03-06 13:12:33 +01:00
|
|
|
#define ECMULT_WINDOW_SIZE 15
|
2021-04-10 11:37:08 -07:00
|
|
|
#define ECMULT_GEN_PREC_BITS 4
|
2015-05-19 17:32:35 -07:00
|
|
|
|
2017-08-26 18:44:21 +03:00
|
|
|
#endif /* USE_BASIC_CONFIG */
|
|
|
|
|
|
|
|
#endif /* SECP256K1_BASIC_CONFIG_H */
|