summaryrefslogtreecommitdiff
path: root/src/add_threshold
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@airbus.com>2019-03-15 17:28:28 +0100
committerKévin Le Gouguec <kevin.legouguec@airbus.com>2019-03-15 17:28:28 +0100
commit3ffe28672860a63fd95ed9e97601f30258ea2bdb (patch)
tree50697678643e754ec1b83855b3ddb755205fa237 /src/add_threshold
parente744e3907713a073100cfe96769fe235b1bf50b8 (diff)
downloadlilliput-ae-implem-3ffe28672860a63fd95ed9e97601f30258ea2bdb.tar.xz
Nettoyage d'espaces
… En vrai je ne vois pas de bonne raison de se soucier des espaces en bout de ligne. Les outils de diff savent les ignorer, les éditeurs savent les ignorer… 🤷
Diffstat (limited to 'src/add_threshold')
-rw-r--r--src/add_threshold/cipher.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/add_threshold/cipher.c b/src/add_threshold/cipher.c
index 765972a..f0e1ac4 100644
--- a/src/add_threshold/cipher.c
+++ b/src/add_threshold/cipher.c
@@ -16,12 +16,12 @@ http://creativecommons.org/publicdomain/zero/1.0/
---
-This file provides a first-order threshold implementation of the Lilliput-AE
-tweakable block cipher. The input block is split into 3 shares while the key
-is split into 2 shares for the tweakey schedule. The S-box relies on look-up
-tables and saves some memory usage at the cost of additional operations as
-described in the specification. This implementation operates on 3 shares
-throughout the entire round function in order to avoid extra randomness
+This file provides a first-order threshold implementation of the Lilliput-AE
+tweakable block cipher. The input block is split into 3 shares while the key
+is split into 2 shares for the tweakey schedule. The S-box relies on look-up
+tables and saves some memory usage at the cost of additional operations as
+described in the specification. This implementation operates on 3 shares
+throughout the entire round function in order to avoid extra randomness
generation to switch from 2 shares to 3 shares and vice versa.
*/