aboutsummaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
authorJ08nY2024-12-01 20:03:57 +0100
committerJ08nY2024-12-01 20:03:57 +0100
commit0e9aa69f03a2c6519c8eaeab571b5155d80b05c0 (patch)
tree67e79e399279ff23a5d0312e9de976564b81ff0f /src/misc
parent23c460dff96f57a4fa480ab6426700b0be384f12 (diff)
downloadecgen-0e9aa69f03a2c6519c8eaeab571b5155d80b05c0.tar.gz
ecgen-0e9aa69f03a2c6519c8eaeab571b5155d80b05c0.tar.zst
ecgen-0e9aa69f03a2c6519c8eaeab571b5155d80b05c0.zip
Add KSS curve generation.
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/misc/types.h b/src/misc/types.h
index ed9cd18..4bc2114 100644
--- a/src/misc/types.h
+++ b/src/misc/types.h
@@ -15,11 +15,13 @@
/**
* @brief
* @param bits
+ * @param sign
* @param bitlen
* @param allocated
*/
typedef struct {
unsigned char *bits;
+ bool sign;
size_t bitlen;
size_t allocated;
} bits_t;