diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-03-26 15:04:31 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-03-26 15:44:53 +0100 |
| commit | a555bb68a86a8d57cd3cae3d5e3c14acfda6fd6d (patch) | |
| tree | 7a7485852756a76085c54bb7d863d5c726a480c9 /implementations/vhdl/add_vhdltbc/encryptdecrypt/i-128/const_pack.vhd | |
| parent | 89a026b31fa8a65c756eed53cada41fab99d2edc (diff) | |
| download | lilliput-ae-implem-a555bb68a86a8d57cd3cae3d5e3c14acfda6fd6d.tar.xz | |
[implem-vhdl] Factorisation du code
Diffstat (limited to 'implementations/vhdl/add_vhdltbc/encryptdecrypt/i-128/const_pack.vhd')
| -rw-r--r-- | implementations/vhdl/add_vhdltbc/encryptdecrypt/i-128/const_pack.vhd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/implementations/vhdl/add_vhdltbc/encryptdecrypt/i-128/const_pack.vhd b/implementations/vhdl/add_vhdltbc/encryptdecrypt/i-128/const_pack.vhd new file mode 100644 index 0000000..40869dc --- /dev/null +++ b/implementations/vhdl/add_vhdltbc/encryptdecrypt/i-128/const_pack.vhd @@ -0,0 +1,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;
\ No newline at end of file |
