PRCYCoin  2.0.0.7rc1
P2P Digital Currency
field_5x52.h
Go to the documentation of this file.
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  **********************************************************************/
6 
7 #ifndef _SECP256K1_FIELD_REPR_
8 #define _SECP256K1_FIELD_REPR_
9 
10 #include <stdint.h>
11 
12 typedef struct {
13  /* X = sum(i=0..4, elem[i]*2^52) mod n */
14  uint64_t n[5];
15 #ifdef VERIFY
16  int magnitude;
17  int normalized;
18 #endif
20 
21 #endif
secp256k1_fe_t
Definition: field_10x26.h:12