2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#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 */
|
2019-05-12 22:22:18 +00:00
|
|
|
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 (a->sign == MP_NEG) {
|
|
|
|
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
|