]> pd.if.org Git - zpackage/blob - tomsfastmath/src/addsub/fp_addmod.c
commit files needed for zpm-fetchurl
[zpackage] / tomsfastmath / src / addsub / fp_addmod.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
12 /* d = a + b (mod c) */
13 int fp_addmod(fp_int *a, fp_int *b, fp_int *c, fp_int *d)
14 {
15   fp_int tmp;
16   fp_zero(&tmp);
17   fp_add(a, b, &tmp);
18   return fp_mod(&tmp, c, d);
19 }
20
21 /* $Source$ */
22 /* $Revision$ */
23 /* $Date$ */