From 887d764cda2157edce36cde4e5d56c37d94b068a Mon Sep 17 00:00:00 2001 From: Carlo Pascoe Date: Tue, 7 Jul 2026 17:37:19 -0400 Subject: [PATCH] Add back usint/usshort/uschar typedefs for external project backwards compatibility --- src/core/include/utils/inttypes.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; /**