8 #ifndef BOTAN_MPI_TYPES_H__
9 #define BOTAN_MPI_TYPES_H__
11 #include <botan/types.h>
15 #if (BOTAN_MP_WORD_BITS == 8)
17 #elif (BOTAN_MP_WORD_BITS == 16)
18 typedef uint16_t word;
19 #elif (BOTAN_MP_WORD_BITS == 32)
20 typedef uint32_t word;
21 #elif (BOTAN_MP_WORD_BITS == 64)
22 typedef uint64_t word;
24 #error BOTAN_MP_WORD_BITS must be 8, 16, 32, or 64
const word MP_WORD_TOP_BIT