From 4a43b7c66d3f5e0e7933391921c2dba2eec84426 Mon Sep 17 00:00:00 2001 From: Gaetan Leplus Date: Tue, 26 Mar 2019 14:36:07 +0100 Subject: [implem-vhdl] Ajout des sources VHDL --- .../vhdl/Encrypt/lilliputtbcii192v1/const_pack.vhd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 implementations/vhdl/Encrypt/lilliputtbcii192v1/const_pack.vhd (limited to 'implementations/vhdl/Encrypt/lilliputtbcii192v1/const_pack.vhd') diff --git a/implementations/vhdl/Encrypt/lilliputtbcii192v1/const_pack.vhd b/implementations/vhdl/Encrypt/lilliputtbcii192v1/const_pack.vhd new file mode 100644 index 0000000..30aff46 --- /dev/null +++ b/implementations/vhdl/Encrypt/lilliputtbcii192v1/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 := 36; + constant TWEAK_LEN : integer := 128; + constant KEY_LEN : integer := 192; +end const_pack; \ No newline at end of file -- cgit v1.2.3