diff --git a/src/core/include/utils/inttypes.h b/src/core/include/utils/inttypes.h index 40af966fc..ca390d00f 100644 --- a/src/core/include/utils/inttypes.h +++ b/src/core/include/utils/inttypes.h @@ -41,6 +41,21 @@ #include #include +/** + * @brief Type used for representing unsigned 8-bit integers. + */ +typedef uint8_t uschar; + +/** + * @brief Type used for representing unsigned 16-bit short integers. + */ +typedef uint16_t usshort; + +/** + * @brief Type used for representing unsigned 32-bit integers. + */ +typedef uint32_t usint; + typedef uint64_t PlaintextModulus; /**