summaryrefslogtreecommitdiff
path: root/implementations/vhdl/Encrypt_Decypt/lilliputtbcii128v1/const_pack.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'implementations/vhdl/Encrypt_Decypt/lilliputtbcii128v1/const_pack.vhd')
-rw-r--r--implementations/vhdl/Encrypt_Decypt/lilliputtbcii128v1/const_pack.vhd17
1 files changed, 17 insertions, 0 deletions
diff --git a/implementations/vhdl/Encrypt_Decypt/lilliputtbcii128v1/const_pack.vhd b/implementations/vhdl/Encrypt_Decypt/lilliputtbcii128v1/const_pack.vhd
new file mode 100644
index 0000000..11340b2
--- /dev/null
+++ b/implementations/vhdl/Encrypt_Decypt/lilliputtbcii128v1/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 := 128;
+ constant KEY_LEN : integer := 128;
+end const_pack; \ No newline at end of file