summaryrefslogtreecommitdiff
path: root/rijndael.cpp
diff options
context:
space:
mode:
authororangefour <thirdorange@gmx.com>2018-10-22 13:50:04 +0200
committerJeffrey Walton <noloader@gmail.com>2018-10-22 07:50:04 -0400
commit253f1ba5dae248cd194619487a33574a1849e7ad (patch)
tree5dfeeed83a895aac797cb199b50a414876cd2768 /rijndael.cpp
parent8790467fac540fca4f1f60ab14b91b40b58b9be6 (diff)
downloadcryptopp-git-253f1ba5dae248cd194619487a33574a1849e7ad.tar.gz
Fix unused variable warnings (GH #723)
Diffstat (limited to 'rijndael.cpp')
-rw-r--r--rijndael.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/rijndael.cpp b/rijndael.cpp
index b8bbd6b0..f0e200fb 100644
--- a/rijndael.cpp
+++ b/rijndael.cpp
@@ -120,15 +120,6 @@ static volatile bool s_TeFilled = false, s_TdFilled = false;
ANONYMOUS_NAMESPACE_BEGIN
-CRYPTOPP_ALIGN_DATA(16)
-const word32 s_one[] = {0, 0, 0, 1<<24};
-
-/* for 128-bit blocks, Rijndael never uses more than 10 rcon values */
-CRYPTOPP_ALIGN_DATA(16)
-const word32 s_rconLE[] = {
- 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1B, 0x36
-};
-
#if CRYPTOPP_BOOL_X64 || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X86
// Determine whether the range between begin and end overlaps