diff options
| author | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-05-21 14:33:49 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@airbus.com> | 2019-05-21 14:33:49 +0200 |
| commit | 67b51dfeb2e08f4e594e2fa67448dbde32394ab8 (patch) | |
| tree | 276090459bd24308fb9c393d85d98d29b3303dae | |
| parent | 7b5ab3aa0c5e8c62b4fc9dcb4fc579efb527a4f0 (diff) | |
| download | lilliput-ae-implem-67b51dfeb2e08f4e594e2fa67448dbde32394ab8.tar.xz | |
Rajout d'inclusions manquantes
| -rw-r--r-- | src/add_tweakeyloop/multiplications.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/add_tweakeyloop/multiplications.h b/src/add_tweakeyloop/multiplications.h index f59b885..36e3c72 100644 --- a/src/add_tweakeyloop/multiplications.h +++ b/src/add_tweakeyloop/multiplications.h @@ -22,6 +22,10 @@ implemented by applying functions for M and M_R n times. #ifndef MULTIPLICATIONS_H #define MULTIPLICATIONS_H +#include <stdint.h> + +#include "constants.h" + static void _multiply_M(const uint8_t x[LANE_BYTES], uint8_t y[LANE_BYTES]) { y[7] = x[6]; |
