From 0c2c0a846d42b05b44d62a3c3fcaf410660f8a4d Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Wed, 30 Dec 2015 06:57:34 +0100 Subject: Cryptography: Optimize Whirlpool implementation by using public domain assembly code developed by Wei Dai --- src/Common/Tcdefs.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Common/Tcdefs.h') diff --git a/src/Common/Tcdefs.h b/src/Common/Tcdefs.h index 5725c135..25b8a127 100644 --- a/src/Common/Tcdefs.h +++ b/src/Common/Tcdefs.h @@ -52,6 +52,7 @@ typedef unsigned __int32 TC_LARGEST_COMPILER_UINT; typedef unsigned __int64 TC_LARGEST_COMPILER_UINT; typedef __int64 int64; typedef unsigned __int64 uint64; +#define LL(x) x##ui64 #endif #else // !_MSC_VER @@ -68,6 +69,8 @@ typedef uint16_t uint16; typedef uint32_t uint32; typedef uint64_t uint64; +#define LL(x) x##ULL + #if UCHAR_MAX != 0xffU #error UCHAR_MAX != 0xff #endif -- cgit v1.2.3