diff options
| author | J08nY | 2019-12-23 02:05:35 +0100 |
|---|---|---|
| committer | J08nY | 2019-12-23 02:05:35 +0100 |
| commit | b43c5dba0ec18fe5a5204537855ea2b73fc674c6 (patch) | |
| tree | 879c946cb9036f6db721fc44c37635c295ee2003 /pyecsca/codegen/mult.h | |
| parent | 878d95c4e4dadf882a205316a07bc0642f773256 (diff) | |
| download | pyecsca-codegen-b43c5dba0ec18fe5a5204537855ea2b73fc674c6.tar.gz pyecsca-codegen-b43c5dba0ec18fe5a5204537855ea2b73fc674c6.tar.zst pyecsca-codegen-b43c5dba0ec18fe5a5204537855ea2b73fc674c6.zip | |
Implement multipliers.
Diffstat (limited to 'pyecsca/codegen/mult.h')
| -rw-r--r-- | pyecsca/codegen/mult.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pyecsca/codegen/mult.h b/pyecsca/codegen/mult.h new file mode 100644 index 0000000..b46684f --- /dev/null +++ b/pyecsca/codegen/mult.h @@ -0,0 +1,8 @@ +#ifndef MULT_H_ +#define MULT_H_ + +#include "defs.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 |
