blob: a41c9dacde356f1c40b66e2c515ca96efa4dfc1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
-- Implementation of the Lilliput-TBC tweakable block cipher by the
-- Lilliput-AE team, hereby denoted as "the implementer".
--
-- For more information, feedback or questions, refer to our website:
-- https://paclido.fr/lilliput-ae
--
-- To the extent possible under law, the implementer has waived all copyright
-- and related or neighboring rights to the source code in this file.
-- http://creativecommons.org/publicdomain/zero/1.0/
library IEEE;
library work;
use IEEE.numeric_std.ALL;
use IEEE.STD_LOGIC_1164.ALL;
use work.crypt_pack.ALL;
entity key_schedule_liliput is port
(
key_i : in type_tweak_key_array;
round_number : in std_logic_vector(7 downto 0);
key_o : out type_tweak_key_array;
round_key_o : out type_key
);
end key_schedule_liliput;
architecture key_schedule_liliput_arch of key_schedule_liliput is
component multiplications port(
mularray_i : in type_tweak_key_array;
mularray_o : out type_tweak_key_array
);
end component;
signal key_s : type_tweak_key_array;
signal round_key_s : type_key;
begin
multiplications_t : multiplications
port map (
mularray_i => key_i,
mularray_o => key_s
);
key_o<=key_s;
if_lane4: if LANE_NB=4 generate
col2: for j in 0 to 3 generate
round_key_s(0)(j) <= key_i(0)(j) xor key_i(1)(j) xor key_i(2)(j) xor key_i(3)(j) ;
round_key_s(1)(j) <= key_i(0)(j+4) xor key_i(1)(j+4) xor key_i(2)(j+4) xor key_i(3)(j+4);
end generate;
end generate;
if_lane5: if LANE_NB=5 generate
col2: for j in 0 to 3 generate
round_key_s(0)(j) <= key_i(0)(j) xor key_i(1)(j) xor key_i(2)(j) xor key_i(3)(j) xor key_i(4)(j) ;
round_key_s(1)(j) <= key_i(0)(j+4) xor key_i(1)(j+4) xor key_i(2)(j+4) xor key_i(3)(j+4) xor key_i(4)(j+4);
end generate;
end generate;
if_lane6: if LANE_NB=6 generate
col2: for j in 0 to 3 generate
round_key_s(0)(j) <= key_i(0)(j) xor key_i(1)(j) xor key_i(2)(j) xor key_i(3)(j) xor key_i(4)(j) xor key_i(5)(j) ;
round_key_s(1)(j) <= key_i(0)(j+4) xor key_i(1)(j+4) xor key_i(2)(j+4) xor key_i(3)(j+4) xor key_i(4)(j+4) xor key_i(5)(j+4);
end generate;
end generate;
if_lane7: if LANE_NB=7 generate
col2: for j in 0 to 3 generate
round_key_s(0)(j) <= key_i(0)(j) xor key_i(1)(j) xor key_i(2)(j) xor key_i(3)(j) xor key_i(4)(j) xor key_i(5)(j) xor key_i(6)(j) ;
round_key_s(1)(j) <= key_i(0)(j+4) xor key_i(1)(j+4) xor key_i(2)(j+4) xor key_i(3)(j+4) xor key_i(4)(j+4) xor key_i(5)(j+4) xor key_i(6)(j+4);
end generate;
end generate;
row1: for j in 0 to 3 generate
round_key_o(0)(j) <= round_key_s(0)(j) xor round_number when j= 0 else --on XOR chaque element des matrices de multiplications a l'index 0 avec le numero de tour
round_key_s(0)(j); --on XOR chaque element des matrices de multiplications entre les index 1 et 3
round_key_o(1)(j) <= round_key_s(1)(j);
end generate;
end key_schedule_liliput_arch;
configuration key_schedule_liliput_conf of key_schedule_liliput is
for key_schedule_liliput_arch
for multiplications_t : multiplications
use entity work.multiplications(Behavioral);
end for;
end for;
end configuration key_schedule_liliput_conf ;
|