2020-12-29 17:15:51 +00: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-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
#ifndef SECP256K1_BASIC_CONFIG_H
|
|
|
|
#define SECP256K1_BASIC_CONFIG_H
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
#ifdef USE_BASIC_CONFIG
|
|
|
|
|
2019-05-28 12:23:28 +00:00
|
|
|
#define ECMULT_WINDOW_SIZE 15
|
2021-06-14 14:55:38 +00:00
|
|
|
#define ECMULT_GEN_PREC_BITS 4
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
#endif /* USE_BASIC_CONFIG */
|
|
|
|
|
|
|
|
#endif /* SECP256K1_BASIC_CONFIG_H */
|