diff options
| author | J08nY | 2019-11-25 21:25:29 +0100 |
|---|---|---|
| committer | J08nY | 2019-11-25 21:25:29 +0100 |
| commit | de491a6191b465edb7bd9a01a5177ac9bf836747 (patch) | |
| tree | 18459bc2cb101782e2157b0e9313d288d1b6a43b /pyecsca/codegen/coords.h | |
| parent | 8a56c7a95e662862cfe78b834ccb091e95d5372f (diff) | |
| download | pyecsca-codegen-de491a6191b465edb7bd9a01a5177ac9bf836747.tar.gz pyecsca-codegen-de491a6191b465edb7bd9a01a5177ac9bf836747.tar.zst pyecsca-codegen-de491a6191b465edb7bd9a01a5177ac9bf836747.zip | |
Start Python codegen impl.
Diffstat (limited to 'pyecsca/codegen/coords.h')
| -rw-r--r-- | pyecsca/codegen/coords.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/pyecsca/codegen/coords.h b/pyecsca/codegen/coords.h index 751aeb6..6a1af7e 100644 --- a/pyecsca/codegen/coords.h +++ b/pyecsca/codegen/coords.h @@ -1,16 +1,10 @@ #ifndef COORDS_H_ #define COORDS_H_ -//point_t definition is variable -/* -typedef struct { - bn_t X; - bn_t Y; - bn_t Z; -} point_t; -*/ +#include "bn.h" +#include "defs.h" -point_t *point_new(); +point_t *point_new(void); point_t *point_copy(const point_t *from); |
