diff options
Diffstat (limited to 'rdtables.cpp')
-rw-r--r-- | rdtables.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rdtables.cpp b/rdtables.cpp index 8b2cea5b..8ceb800f 100644 --- a/rdtables.cpp +++ b/rdtables.cpp @@ -154,10 +154,11 @@ const byte Rijndael::Base::Sd[256] = { 0x55, 0x21, 0x0c, 0x7d,
};
+/* for 128-bit blocks, Rijndael never uses more than 10 rcon values */
const word32 Rijndael::Base::rcon[] = {
0x01000000, 0x02000000, 0x04000000, 0x08000000,
0x10000000, 0x20000000, 0x40000000, 0x80000000,
- 0x1B000000, 0x36000000, /* for 128-bit blocks, Rijndael never uses more than 10 rcon values */
+ 0x1B000000, 0x36000000
};
NAMESPACE_END
|