~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to extra/yassl/taocrypt/src/aestables.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   Copyright (C) 2000-2007 MySQL AB
 
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-1301  USA.
 
17
*/
 
18
 
 
19
/* based on Wei Dai's aestables.cpp from CryptoPP */
 
20
 
 
21
#include "runtime.hpp"
 
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
 
 
37
 
 
38
} // namespace