diff options
Diffstat (limited to 'pyecsca/codegen/mult')
| -rw-r--r-- | pyecsca/codegen/mult/double_and_add.c | 5 | ||||
| -rw-r--r-- | pyecsca/codegen/mult/mult.h | 8 |
2 files changed, 13 insertions, 0 deletions
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 |
