1 /**********************************************************************
2 * Copyright (c) 2013, 2014 Pieter Wuille *
3 * Distributed under the MIT software license, see the accompanying *
4 * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
5 **********************************************************************/
7 #ifndef SECP256K1_NUM_REPR_H
8 #define SECP256K1_NUM_REPR_H
12 #define NUM_LIMBS ((256+GMP_NUMB_BITS-1)/GMP_NUMB_BITS)
15 mp_limb_t data[2*NUM_LIMBS];
20 #endif /* SECP256K1_NUM_REPR_H */