summaryrefslogtreecommitdiff
path: root/aria.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-03-27 20:47:20 -0400
committerJeffrey Walton <noloader@gmail.com>2018-03-27 20:47:20 -0400
commit3958fad099f109d4547f0caf62ceb9b10f74c773 (patch)
tree7c61378b2223a3995efc19dcfed107c3244ba370 /aria.cpp
parent1c60f6480f8132e345c77e066e0fa52e20808fe7 (diff)
downloadcryptopp-git-3958fad099f109d4547f0caf62ceb9b10f74c773.tar.gz
Add sbyte, sword16, sword32 and sword64 (GH #608, GH #609)
Visual Studio 2008 kind of forced out hand with this. VS2008 lacks <stdint.h> and <cstdint> and it caused compile problems in NaCl gear. We were being a tad bit lazy by relying on int8_t, int32_t and int64_t, but the compiler errors made us act
Diffstat (limited to 'aria.cpp')
-rw-r--r--aria.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/aria.cpp b/aria.cpp
index cf28a075..22c65099 100644
--- a/aria.cpp
+++ b/aria.cpp
@@ -17,7 +17,7 @@
// GCC cast warning. Note: this is used on round key table,
// which is word32 and naturally aligned.
-#define UINT32_CAST(x) ((uint32_t *)(void *)(x))
+#define UINT32_CAST(x) ((word32 *)(void *)(x))
NAMESPACE_BEGIN(CryptoPP)
NAMESPACE_BEGIN(ARIATab)