]> pd.if.org Git - zpackage/blob - tomsfastmath/src/mul/fp_mulmod.c
commit files needed for zpm-fetchurl
[zpackage] / tomsfastmath / src / mul / fp_mulmod.c
1 /* TomsFastMath, a fast ISO C bignum library.
2  * 
3  * This project is meant to fill in where LibTomMath
4  * falls short.  That is speed ;-)
5  *
6  * This project is public domain and free for all purposes.
7  * 
8  * Tom St Denis, tomstdenis@gmail.com
9  */
10 #include <tfm_private.h>
11 /* d = a * b (mod c) */
12 int fp_mulmod(fp_int *a, fp_int *b, fp_int *c, fp_int *d)
13 {
14   fp_int tmp;
15   fp_zero(&tmp);
16   fp_mul(a, b, &tmp);
17   return fp_mod(&tmp, c, d);
18 }
19
20 /* $Source$ */
21 /* $Revision$ */
22 /* $Date$ */