aboutsummaryrefslogtreecommitdiffstats
path: root/src/zmodmul.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zmodmul.c')
-rw-r--r--src/zmodmul.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zmodmul.c b/src/zmodmul.c
index 26d1178..5dd3a6c 100644
--- a/src/zmodmul.c
+++ b/src/zmodmul.c
@@ -6,6 +6,7 @@ void
zmodmul(z_t a, z_t b, z_t c, z_t d)
{
/* TODO Montgomery modular multiplication */
+ /* TODO Kochanski multiplication */
if (unlikely(a == d)) {
zset(libzahl_tmp_modmul, d);
zmul(a, b, c);