OpenCores
URL https://opencores.org/ocsvn/aes_pipe/aes_pipe/trunk

Subversion Repositories aes_pipe

[/] [aes_pipe/] [trunk/] [rtl/] [vhdl/] [aes_pkg.vhdl] - Diff between revs 5 and 9

Show entire file | Details | Blame | View Log

Rev 5 Rev 9
Line 42... Line 42...
----                                                              ----
----                                                              ----
----------------------------------------------------------------------
----------------------------------------------------------------------
------------------------------------------------------
------------------------------------------------------
-- Project: AESFast
-- Project: AESFast
-- Author: Subhasis
-- Author: Subhasis
-- Last Modified: 20/03/10
-- Last Modified: 25/03/10
-- Email: subhasis256@gmail.com
-- Email: subhasis256@gmail.com
------------------------------------------------------
------------------------------------------------------
-- Common library file containing common data path definitions
-- Common library file containing common data path definitions
------------------------------------------------------
------------------------------------------------------
 
 
Line 54... Line 54...
use IEEE.std_logic_1164.all;
use IEEE.std_logic_1164.all;
 
 
package aes_pkg is
package aes_pkg is
        -- A column of 4 bytes
        -- A column of 4 bytes
        type blockcol is array(3 downto 0) of std_logic_vector(7 downto 0);
        type blockcol is array(3 downto 0) of std_logic_vector(7 downto 0);
 
        constant zero_col: blockcol := (X"00", X"00", X"00", X"00");
        -- A datablock of 16 bytes
        -- A datablock of 16 bytes
        type datablock is array(3 downto 0, 3 downto 0) of std_logic_vector(7 downto 0);
        type datablock is array(3 downto 0, 3 downto 0) of std_logic_vector(7 downto 0);
 
        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"));
        -- Vector of columns
        -- Vector of columns
        type colnet is array(natural range<>) of blockcol;
        type colnet is array(natural range<>) of blockcol;
        -- Vector of blocks
        -- Vector of blocks
        type datanet is array(natural range<>) of datablock;
        type datanet is array(natural range<>) of datablock;
        -- the 10 rcon bytes
        -- the 10 rcon bytes

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.