libtommath/mp_cmp_d.c

27 lines
531 B
C
Raw Permalink Normal View History

#include "tommath_private.h"
#ifdef MP_CMP_D_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2003-02-28 16:08:34 +00:00
/* compare a digit */
mp_ord mp_cmp_d(const mp_int *a, mp_digit b)
2003-02-28 16:08:34 +00:00
{
2017-08-29 20:23:48 +00:00
/* compare based on sign */
if (mp_isneg(a)) {
2017-08-29 20:23:48 +00:00
return MP_LT;
}
2003-02-28 16:08:34 +00:00
2017-08-29 20:23:48 +00:00
/* compare based on magnitude */
if (a->used > 1) {
return MP_GT;
}
2003-02-28 16:08:34 +00:00
2017-08-29 20:23:48 +00:00
/* compare the only digit of a to b */
2019-10-29 17:41:25 +00:00
if (a->dp[0] != b) {
return a->dp[0] > b ? MP_GT : MP_LT;
2017-08-29 20:23:48 +00:00
}
2019-10-29 17:41:25 +00:00
return MP_EQ;
2003-02-28 16:08:34 +00:00
}
2004-10-29 22:07:18 +00:00
#endif