mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-04 10:07:27 -05:00
12 lines
221 B
C
12 lines
221 B
C
#ifndef _SECP256K1_FIELD_REPR_
|
|
#define _SECP256K1_FIELD_REPR_
|
|
|
|
#include <gmp.h>
|
|
|
|
#define FIELD_LIMBS ((256 + GMP_NUMB_BITS - 1) / GMP_NUMB_BITS)
|
|
|
|
typedef struct {
|
|
mp_limb_t n[FIELD_LIMBS+1];
|
|
} secp256k1_fe_t;
|
|
|
|
#endif
|