1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-30 11:18:12 +00:00
simplesshd/dropbear/libtommath/bn_mp_cmp_mag.c

40 lines
810 B
C
Raw Normal View History

2020-12-28 21:40:37 +00:00
#include "tommath_private.h"
2014-12-10 21:56:49 +00:00
#ifdef BN_MP_CMP_MAG_C
2020-12-28 21:40:37 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2014-12-10 21:56:49 +00:00
/* compare maginitude of two ints (unsigned) */
2020-12-28 21:40:37 +00:00
mp_ord mp_cmp_mag(const mp_int *a, const mp_int *b)
2014-12-10 21:56:49 +00:00
{
2020-12-28 21:40:37 +00:00
int n;
const mp_digit *tmpa, *tmpb;
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* compare based on # of non-zero digits */
if (a->used > b->used) {
return MP_GT;
}
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
if (a->used < b->used) {
return MP_LT;
}
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* alias for a */
tmpa = a->dp + (a->used - 1);
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* alias for b */
tmpb = b->dp + (a->used - 1);
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* compare based on digits */
for (n = 0; n < a->used; ++n, --tmpa, --tmpb) {
if (*tmpa > *tmpb) {
return MP_GT;
}
if (*tmpa < *tmpb) {
return MP_LT;
}
}
return MP_EQ;
2014-12-10 21:56:49 +00:00
}
#endif