1 /*
2 Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; version 2 of the License.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to the
15 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
16 MA 02110-1335 USA.
17 */
18
19 /* based on Wei Dai's aestables.cpp from CryptoPP */
20
21 #include "runtime.hpp"
main()22 #include "aes.hpp"
23
24
25 namespace TaoCrypt {
26
27
28 const word32 AES::rcon_[] = {
29 0x01000000, 0x02000000, 0x04000000, 0x08000000,
30 0x10000000, 0x20000000, 0x40000000, 0x80000000,
31 0x1B000000, 0x36000000,
32 /* for 128-bit blocks, Rijndael never uses more than 10 rcon values */
33 };
34
35
36 } // namespace
37