engines/ccgost/gost89.h: make word32 defintion unconditional.
Original definition depended on __LONG_MAX__ that is not guaranteed to
be present. As we don't support platforms with int narrower that 32 bits
it's appropriate to make defition inconditional.
PR: 3165
(cherry picked from commit 96180cac04
)
This commit is contained in:
@@ -87,10 +87,6 @@ extern gost_subst_block Gost28147_CryptoProParamSetB;
|
|||||||
extern gost_subst_block Gost28147_CryptoProParamSetC;
|
extern gost_subst_block Gost28147_CryptoProParamSetC;
|
||||||
extern gost_subst_block Gost28147_CryptoProParamSetD;
|
extern gost_subst_block Gost28147_CryptoProParamSetD;
|
||||||
extern const byte CryptoProKeyMeshingKey[];
|
extern const byte CryptoProKeyMeshingKey[];
|
||||||
#if __LONG_MAX__ > 2147483647L
|
|
||||||
typedef unsigned int word32;
|
typedef unsigned int word32;
|
||||||
#else
|
|
||||||
typedef unsigned long word32;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user