diff options
| author | Mattias Andrée <maandree@kth.se> | 2016-05-13 04:38:09 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2016-05-13 04:38:09 +0200 |
| commit | 16a001c8fe4e5ca99d5aafdd8ed02a35f09b6caa (patch) | |
| tree | fe1116e5d8ce39e032c777003caa6d03ce667c78 /src/zmodmul.c | |
| parent | Exponentiation: clarification of a mathematical expression (diff) | |
| download | libzahl-16a001c8fe4e5ca99d5aafdd8ed02a35f09b6caa.tar.gz libzahl-16a001c8fe4e5ca99d5aafdd8ed02a35f09b6caa.tar.bz2 libzahl-16a001c8fe4e5ca99d5aafdd8ed02a35f09b6caa.tar.xz | |
Miscellaneous stuff
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
| -rw-r--r-- | src/zmodmul.c | 1 |
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); |
