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