]> pd.if.org Git - zpackage/blob - crypto/libeddsa/lib/limb.h
add package signing code
[zpackage] / crypto / libeddsa / lib / limb.h
1 #ifndef LIMB_H
2 #define LIMB_H
3
4 #include <stdint.h>
5
6 #include "bitness.h"
7
8 #ifdef USE_64BIT
9
10 typedef int64_t limb_t;
11 typedef __int128_t llimb_t;
12
13 #else
14
15 typedef int32_t limb_t;
16 typedef int64_t llimb_t;
17
18 #endif
19
20
21 #endif