#include "tommath_private.h"
#ifdef BN_MP_GCD_C
int
mp_gcd(
const
mp_int *a,
const
mp_int *b, mp_int *c)
{
mp_int u, v;
int
k, u_lsb, v_lsb, res;
if
(mp_iszero(a) == MP_YES) {
return
mp_abs(b, c);
}
if
(mp_iszero(b) == MP_YES) {
return
mp_abs(a, c);
}
if
((res = mp_init_copy(&u, a)) != MP_OKAY) {
return
res;
}
if
((res = mp_init_copy(&v, b)) != MP_OKAY) {
goto
LBL_U;
}
u.sign = v.sign = MP_ZPOS;
u_lsb = mp_cnt_lsb(&u);
v_lsb = mp_cnt_lsb(&v);
k = MIN(u_lsb, v_lsb);
if
(k > 0) {
if
((res = mp_div_2d(&u, k, &u, NULL)) != MP_OKAY) {
goto
LBL_V;
}
if
((res = mp_div_2d(&v, k, &v, NULL)) != MP_OKAY) {
goto
LBL_V;
}
}
if
(u_lsb != k) {
if
((res = mp_div_2d(&u, u_lsb - k, &u, NULL)) != MP_OKAY) {
goto
LBL_V;
}
}
if
(v_lsb != k) {
if
((res = mp_div_2d(&v, v_lsb - k, &v, NULL)) != MP_OKAY) {
goto
LBL_V;
}
}
while
(mp_iszero(&v) == MP_NO) {
if
(mp_cmp_mag(&u, &v) == MP_GT) {
mp_exch(&u, &v);
}
if
((res = s_mp_sub(&v, &u, &v)) != MP_OKAY) {
goto
LBL_V;
}
if
((res = mp_div_2d(&v, mp_cnt_lsb(&v), &v, NULL)) != MP_OKAY) {
goto
LBL_V;
}
}
if
((res = mp_mul_2d(&u, k, c)) != MP_OKAY) {
goto
LBL_V;
}
c->sign = MP_ZPOS;
res = MP_OKAY;
LBL_V:
mp_clear(&u);
LBL_U:
mp_clear(&v);
return
res;
}
#endif