summaryrefslogtreecommitdiff
path: root/implementations/vhdl/Encrypt_Decypt/lilliputtbci128v1/const_pack.vhd
blob: 40869dccefbdc9c4c6ef36e348a20a69f84a9bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
library IEEE;
library work;
use IEEE.STD_LOGIC_1164.ALL;


package const_pack is
    constant ROUND_NB : integer;
    constant TWEAK_LEN : integer;
    constant KEY_LEN : integer;
end const_pack;


package body const_pack is 
    constant ROUND_NB : integer := 32; 
    constant TWEAK_LEN : integer := 192; 
    constant KEY_LEN : integer := 128; 
end const_pack;