commit 67b51dfeb2e08f4e594e2fa67448dbde32394ab8
parent 7b5ab3aa0c5e8c62b4fc9dcb4fc579efb527a4f0
Author: Kévin Le Gouguec <kevin.legouguec@airbus.com>
Date: Tue, 21 May 2019 14:33:49 +0200
Rajout d'inclusions manquantes
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git 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];