diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-12-05 13:40:41 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2018-12-05 13:44:54 +0100 |
| commit | 7cef7206f7f4ec6afe54b710826e5c869be71df7 (patch) | |
| tree | b7d99a49eadeef7aad789a7b7cf23b1cc6a92ac9 /src/constants.c | |
| parent | 52c0e83053a4a7326da6436f9ef29b7dcc64db41 (diff) | |
| download | lilliput-ae-implem-7cef7206f7f4ec6afe54b710826e5c869be71df7.tar.xz | |
Mise à jour de la permutation du key schedule dans le code
Ajout d'une fonction pour récupérer facilement la nouvelle valeur des
vecteurs.
Diffstat (limited to 'src/constants.c')
| -rw-r--r-- | src/constants.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constants.c b/src/constants.c index 29da1d8..7a322e4 100644 --- a/src/constants.c +++ b/src/constants.c @@ -2,7 +2,7 @@ const uint8_t h[8] = { - 1, 5, 3, 0, 4, 7, 2, 6 + 1, 5, 0, 3, 7, 4, 2, 6 }; const uint8_t P[6][256] = { |
