aboutsummaryrefslogtreecommitdiffstats
path: root/man/zmodmul.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/zmodmul.3')
-rw-r--r--man/zmodmul.342
1 files changed, 42 insertions, 0 deletions
diff --git a/man/zmodmul.3 b/man/zmodmul.3
new file mode 100644
index 0000000..45fdbe9
--- /dev/null
+++ b/man/zmodmul.3
@@ -0,0 +1,42 @@
+.TH ZMODMUL 3 libzahl
+.SH NAME
+zmodmul - Calculate the modular product of two big integer
+.SH SYNOPSIS
+.nf
+#include <zahl.h>
+
+void zmodmul(z_t \fIproduct\fP, z_t \fImultiplier\fP, z_t \fImultiplicand\fP, z_t \fImodulator\fP);
+.fi
+.SH DESCRIPTION
+.B zmodmul
+calculates the product of a
+.I multiplier
+and a
+.IR multiplicand ,
+modulus a
+.IR modulator ,
+and stores the result in
+.IR product .
+That is,
+.I product
+gets
+.RI ( multiplier
+⋅
+.IR multiplicand )
+Mod
+.IR modulator .
+.P
+It is safe to call
+.B zmodmul
+with non-unique parameters.
+.SH SEE ALSO
+.BR zmodpow (3),
+.BR zstr (3),
+.BR zadd (3),
+.BR zsub (3),
+.BR zmul (3),
+.BR zdiv (3),
+.BR zmod (3),
+.BR zneg (3),
+.BR zabs (3),
+.BR zpow (3)