1 |
2 |
subhasis25 |
----------------------------------------------------------------------
|
2 |
|
|
---- ----
|
3 |
5 |
subhasis25 |
---- Pipelined Aes IP Core ----
|
4 |
|
|
---- ----
|
5 |
|
|
---- This file is part of the Pipelined AES project ----
|
6 |
|
|
---- http://www.opencores.org/cores/aes_pipe/ ----
|
7 |
|
|
---- ----
|
8 |
|
|
---- Description ----
|
9 |
|
|
---- Implementation of AES IP core according to ----
|
10 |
|
|
---- FIPS PUB 197 specification document. ----
|
11 |
|
|
---- ----
|
12 |
|
|
---- To Do: ----
|
13 |
|
|
---- - ----
|
14 |
|
|
---- ----
|
15 |
|
|
---- Author: ----
|
16 |
|
|
---- - Subhasis Das, subhasis256@gmail.com ----
|
17 |
|
|
---- ----
|
18 |
|
|
----------------------------------------------------------------------
|
19 |
|
|
---- ----
|
20 |
|
|
---- Copyright (C) 2009 Authors and OPENCORES.ORG ----
|
21 |
|
|
---- ----
|
22 |
2 |
subhasis25 |
---- This source file may be used and distributed without ----
|
23 |
|
|
---- restriction provided that this copyright statement is not ----
|
24 |
5 |
subhasis25 |
---- removed from the file and that any derivative work contains ----
|
25 |
2 |
subhasis25 |
---- the original copyright notice and the associated disclaimer. ----
|
26 |
|
|
---- ----
|
27 |
|
|
---- This source file is free software; you can redistribute it ----
|
28 |
|
|
---- and/or modify it under the terms of the GNU Lesser General ----
|
29 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
30 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
31 |
|
|
---- later version. ----
|
32 |
|
|
---- ----
|
33 |
|
|
---- This source is distributed in the hope that it will be ----
|
34 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
35 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
36 |
5 |
subhasis25 |
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
37 |
2 |
subhasis25 |
---- details. ----
|
38 |
|
|
---- ----
|
39 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
40 |
|
|
---- Public License along with this source; if not, download it ----
|
41 |
5 |
subhasis25 |
---- from http://www.opencores.org/lgpl.shtml ----
|
42 |
2 |
subhasis25 |
---- ----
|
43 |
|
|
----------------------------------------------------------------------
|
44 |
|
|
------------------------------------------------------
|
45 |
|
|
-- Project: AESFast
|
46 |
|
|
-- Author: Subhasis
|
47 |
9 |
subhasis25 |
-- Last Modified: 25/03/10
|
48 |
2 |
subhasis25 |
-- Email: subhasis256@gmail.com
|
49 |
|
|
------------------------------------------------------
|
50 |
|
|
-- Common library file containing common data path definitions
|
51 |
|
|
------------------------------------------------------
|
52 |
|
|
|
53 |
|
|
library IEEE;
|
54 |
|
|
use IEEE.std_logic_1164.all;
|
55 |
|
|
|
56 |
|
|
package aes_pkg is
|
57 |
|
|
-- A column of 4 bytes
|
58 |
|
|
type blockcol is array(3 downto 0) of std_logic_vector(7 downto 0);
|
59 |
9 |
subhasis25 |
constant zero_col: blockcol := (X"00", X"00", X"00", X"00");
|
60 |
2 |
subhasis25 |
-- A datablock of 16 bytes
|
61 |
|
|
type datablock is array(3 downto 0, 3 downto 0) of std_logic_vector(7 downto 0);
|
62 |
9 |
subhasis25 |
constant zero_data: datablock := ((X"00", X"00", X"00", X"00"),(X"00", X"00", X"00", X"00"), (X"00", X"00", X"00", X"00"), (X"00", X"00", X"00", X"00"));
|
63 |
2 |
subhasis25 |
-- Vector of columns
|
64 |
|
|
type colnet is array(natural range<>) of blockcol;
|
65 |
|
|
-- Vector of blocks
|
66 |
|
|
type datanet is array(natural range<>) of datablock;
|
67 |
|
|
-- the 10 rcon bytes
|
68 |
|
|
type rconarr is array(9 downto 0) of std_logic_vector(7 downto 0);
|
69 |
5 |
subhasis25 |
constant rcon: rconarr := (X"36", X"1b", X"80", X"40", X"20", X"10", X"08", X"04", X"02", X"01");
|
70 |
2 |
subhasis25 |
end package aes_pkg;
|