From 5de32f22e731ea151e1c5aac7703cde2573cb4a4 Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Mon, 29 Mar 2021 18:20:53 +1100 Subject: Use numbers definition of int128_t and uint128_t Signed-off-by: Amitay Isaacs Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/14784) --- crypto/ec/curve448/curve448utils.h | 6 ++++-- crypto/ec/curve448/word.h | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'crypto/ec/curve448') diff --git a/crypto/ec/curve448/curve448utils.h b/crypto/ec/curve448/curve448utils.h index fa06cb02ec..fd8ae4de70 100644 --- a/crypto/ec/curve448/curve448utils.h +++ b/crypto/ec/curve448/curve448utils.h @@ -15,6 +15,8 @@ # include +# include "internal/numbers.h" + /* * Internal word types. Somewhat tricky. This could be decided separately per * platform. However, the structs do need to be all the same size and @@ -41,9 +43,9 @@ typedef int64_t c448_sword_t; /* "Boolean" type, will be set to all-zero or all-one (i.e. -1u) */ typedef uint64_t c448_bool_t; /* Double-word size for internal computations */ -typedef __uint128_t c448_dword_t; +typedef uint128_t c448_dword_t; /* Signed double-word size for internal computations */ -typedef __int128_t c448_dsword_t; +typedef int128_t c448_dsword_t; # elif C448_WORD_BITS == 32 /* Word size for internal computations */ typedef uint32_t c448_word_t; diff --git a/crypto/ec/curve448/word.h b/crypto/ec/curve448/word.h index d3e6ff863b..6e007c3735 100644 --- a/crypto/ec/curve448/word.h +++ b/crypto/ec/curve448/word.h @@ -22,10 +22,10 @@ # if (ARCH_WORD_BITS == 64) typedef uint64_t word_t, mask_t; -typedef __uint128_t dword_t; +typedef uint128_t dword_t; typedef int32_t hsword_t; typedef int64_t sword_t; -typedef __int128_t dsword_t; +typedef int128_t dsword_t; # elif (ARCH_WORD_BITS == 32) typedef uint32_t word_t, mask_t; typedef uint64_t dword_t; -- cgit v1.2.3