38
38
*/
39
39
#if defined(EXHAUSTIVE_TEST_ORDER )
40
40
# if EXHAUSTIVE_TEST_ORDER == 199
41
- const secp256k1_ge secp256k1_ge_const_g = SECP256K1_GE_CONST (
41
+ static const secp256k1_ge secp256k1_ge_const_g = SECP256K1_GE_CONST (
42
42
0xFA7CC9A7 , 0x0737F2DB , 0xA749DD39 , 0x2B4FB069 ,
43
43
0x3B017A7D , 0xA808C2F1 , 0xFB12940C , 0x9EA66C18 ,
44
44
0x78AC123A , 0x5ED8AEF3 , 0x8732BC91 , 0x1F3A2868 ,
45
45
0x48DF246C , 0x808DAE72 , 0xCFE52572 , 0x7F0501ED
46
46
);
47
47
48
- const int CURVE_B = 4 ;
48
+ static const int CURVE_B = 4 ;
49
49
# elif EXHAUSTIVE_TEST_ORDER == 13
50
- const secp256k1_ge secp256k1_ge_const_g = SECP256K1_GE_CONST (
50
+ static const secp256k1_ge secp256k1_ge_const_g = SECP256K1_GE_CONST (
51
51
0xedc60018 , 0xa51a786b , 0x2ea91f4d , 0x4c9416c0 ,
52
52
0x9de54c3b , 0xa1316554 , 0x6cf4345c , 0x7277ef15 ,
53
53
0x54cb1b6b , 0xdc8c1273 , 0x087844ea , 0x43f4603e ,
54
54
0x0eaf9a43 , 0xf6effe55 , 0x939f806d , 0x37adf8ac
55
55
);
56
- const int CURVE_B = 2 ;
56
+ static const int CURVE_B = 2 ;
57
57
# else
58
58
# error No known generator for the specified exhaustive test group order.
59
59
# endif
@@ -68,7 +68,7 @@ static const secp256k1_ge secp256k1_ge_const_g = SECP256K1_GE_CONST(
68
68
0xFD17B448UL , 0xA6855419UL , 0x9C47D08FUL , 0xFB10D4B8UL
69
69
);
70
70
71
- const int CURVE_B = 7 ;
71
+ static const int CURVE_B = 7 ;
72
72
#endif
73
73
74
74
static void secp256k1_ge_set_gej_zinv (secp256k1_ge * r , const secp256k1_gej * a , const secp256k1_fe * zi ) {
0 commit comments