blob: e997429ff7e05e048231f406a072d6397a2f26d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/** math functions **/
#define LTC_MP_LT -1
#define LTC_MP_EQ 0
#define LTC_MP_GT 1
#define LTC_MP_NO 0
#define LTC_MP_YES 1
#include <tommath.h>
typedef mp_int *mp_int_t;
|