summaryrefslogtreecommitdiff
path: root/CHANGELOG.txt
blob: e983aedc4f70ca99b10804aa8154cf35c87d9c35 (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
v1.1
====

ref
---

### Fixes

These modifications change the algorithm's output.

- Change alpha coefficients in tweakey schedule to ensure lane 0 is updated between each round:
    - lane 0: Id  => M
    - lane 1: M   => M^2
    - lane 2: M^2 => M^3
    - lane 3: M^3 => M^4
    - lane 4: M_R   (unchanged)
    - lane 5: M_R^2 (unchanged)
    - lane 6: M_R^3 (unchanged)
  (multiplications.h, tweakey.c)

### Cleanups

These modifications are structural and/or stylistic and do not change the algorithm's ouptut.

- Introduce helper function copy_block_index() to make tweak-building functions more legible.
  (lilliput-ae-utils.h, lilliput-i.c, lilliput-ii.c)

- Initialize ΘCB3 tweak with nonce instead of copying the latter into the latter repeatedly.
  (lilliput-i.c)

- Re-write _nonlinear_layer() and _linear_layer() functions to better resemble the specification.
  (cipher.c)

- Extract tweakey multiplications into their own header file, so that other implementations can make more targeted changes.
  (constants.h, multiplications.h, tweakey.c)


v1.0
====

Initial release to round 1 of the LWC standardization process.