summaryrefslogtreecommitdiff
path: root/src/add_vhdltbc/encrypt/crypt_pack.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'src/add_vhdltbc/encrypt/crypt_pack.vhd')
-rw-r--r--src/add_vhdltbc/encrypt/crypt_pack.vhd2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/add_vhdltbc/encrypt/crypt_pack.vhd b/src/add_vhdltbc/encrypt/crypt_pack.vhd
index 666e296..026ad14 100644
--- a/src/add_vhdltbc/encrypt/crypt_pack.vhd
+++ b/src/add_vhdltbc/encrypt/crypt_pack.vhd
@@ -28,7 +28,7 @@ package crypt_pack is
subtype bit_tweak is std_logic_vector(TWEAK_LEN-1 downto 0);
subtype bit_key is std_logic_vector(KEY_LEN-1 downto 0);
subtype bit_tweak_key is std_logic_vector((TWEAK_LEN+KEY_LEN)-1 downto 0);
-
+ subtype bit_data is std_logic_vector((TWEAK_LEN+KEY_LEN)-1 downto 0);
type row_state is array(0 to 3) of bit8;
type type_state is array(0 to 3) of row_state;