mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-18 11:57:37 -05:00
16 lines
252 B
C
16 lines
252 B
C
![]() |
#ifndef _SECP256K1_FIELD_10x26_
|
||
|
#define _SECP256K1_FIELD_10x26_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
typedef struct {
|
||
|
// X = sum(i=0..9, elem[i]*2^26) mod n
|
||
|
uint32_t n[10];
|
||
|
#ifdef VERIFY
|
||
|
int magnitude;
|
||
|
int normalized;
|
||
|
#endif
|
||
|
} secp256k1_fe_t;
|
||
|
|
||
|
#endif
|