3 /* LibTomMath, multiple-precision integer library -- Tom St Denis
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
12 * The library is free for all purposes without any express
15 * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
18 /* this function is less generic than mp_n_root, simpler and faster */
19 int mp_sqrt(mp_int
*arg
, mp_int
*ret
)
24 /* must be positive */
25 if (arg
->sign
== MP_NEG
) {
30 if (mp_iszero(arg
) == MP_YES
) {
35 if ((res
= mp_init_copy(&t1
, arg
)) != MP_OKAY
) {
39 if ((res
= mp_init(&t2
)) != MP_OKAY
) {
43 /* First approx. (not very bad for large arg) */
44 mp_rshd (&t1
,t1
.used
/2);
47 if ((res
= mp_div(arg
,&t1
,&t2
,NULL
)) != MP_OKAY
) {
50 if ((res
= mp_add(&t1
,&t2
,&t1
)) != MP_OKAY
) {
53 if ((res
= mp_div_2(&t1
,&t1
)) != MP_OKAY
) {
56 /* And now t1 > sqrt(arg) */
58 if ((res
= mp_div(arg
,&t1
,&t2
,NULL
)) != MP_OKAY
) {
61 if ((res
= mp_add(&t1
,&t2
,&t1
)) != MP_OKAY
) {
64 if ((res
= mp_div_2(&t1
,&t1
)) != MP_OKAY
) {
67 /* t1 >= sqrt(arg) >= t2 at this point */
68 } while (mp_cmp_mag(&t1
,&t2
) == MP_GT
);
79 /* $Source: /cvs/libtom/libtommath/bn_mp_sqrt.c,v $ */
80 /* $Revision: 1.3 $ */
81 /* $Date: 2006/03/31 14:18:44 $ */