From c8d0bff46001bd5636825c5b0bb4c896cb34a4e6 Mon Sep 17 00:00:00 2001 From: J08nY Date: Thu, 21 Nov 2019 19:10:50 +0100 Subject: Initialize. --- pyecsca/codegen/mult/double_and_add.c | 5 +++++ pyecsca/codegen/mult/mult.h | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 pyecsca/codegen/mult/double_and_add.c create mode 100644 pyecsca/codegen/mult/mult.h (limited to 'pyecsca/codegen/mult') diff --git a/pyecsca/codegen/mult/double_and_add.c b/pyecsca/codegen/mult/double_and_add.c new file mode 100644 index 0000000..91ad6e3 --- /dev/null +++ b/pyecsca/codegen/mult/double_and_add.c @@ -0,0 +1,5 @@ +#include "mult.h" + +void scalar_mult(bn_t *scalar, point_t *point, curve_t *curve, point_t *out) { + +} \ No newline at end of file diff --git a/pyecsca/codegen/mult/mult.h b/pyecsca/codegen/mult/mult.h new file mode 100644 index 0000000..dcf6767 --- /dev/null +++ b/pyecsca/codegen/mult/mult.h @@ -0,0 +1,8 @@ +#ifndef MULT_H_ +#define MULT_H_ + +#include "formulas.h" + +void scalar_mult(bn_t *scalar, point_t *point, curve_t *curve, point_t *out); + +#endif //MULT_H_ \ No newline at end of file -- cgit v1.3.1