blob: 6c0e6c5fb342ffe1a5549061359422889308c711 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/** 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;
|