1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef BTSATCK_CONFIG_UECC_H__
#define BTSATCK_CONFIG_UECC_H__
#define uECC_CURVE uECC_secp256r1
#define uECC_NO_DEFAULT_RNG
#ifndef uECC_SUPPORTS_secp256r1
#define uECC_SUPPORTS_secp256r1 0
#endif
#ifndef uECC_ASM
#define uECC_ASM uECC_asm_none
#endif
#ifndef uECC_SQUARE_FUNC
#define uECC_SQUARE_FUNC 0
#endif
/* ... */
#endif