18 lines
590 B
C
18 lines
590 B
C
/***********************************************************************
|
|
* 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.*
|
|
***********************************************************************/
|
|
|
|
#ifndef SECP256K1_BASIC_CONFIG_H
|
|
#define SECP256K1_BASIC_CONFIG_H
|
|
|
|
#ifdef USE_BASIC_CONFIG
|
|
|
|
#define ECMULT_WINDOW_SIZE 15
|
|
#define ECMULT_GEN_PREC_BITS 4
|
|
|
|
#endif /* USE_BASIC_CONFIG */
|
|
|
|
#endif /* SECP256K1_BASIC_CONFIG_H */
|