s4:torture: Adapt KDC canon test to Heimdal upstream changes
[samba.git] / third_party / heimdal / lib / hcrypto / libtommath / bn_mp_cmp.c
1 #include "tommath_private.h"
2 #ifdef BN_MP_CMP_C
3 /* LibTomMath, multiple-precision integer library -- Tom St Denis */
4 /* SPDX-License-Identifier: Unlicense */
5
6 /* compare two ints (signed)*/
7 mp_ord mp_cmp(const mp_int *a, const mp_int *b)
8 {
9    /* compare based on sign */
10    if (a->sign != b->sign) {
11       if (a->sign == MP_NEG) {
12          return MP_LT;
13       } else {
14          return MP_GT;
15       }
16    }
17
18    /* compare digits */
19    if (a->sign == MP_NEG) {
20       /* if negative compare opposite direction */
21       return mp_cmp_mag(b, a);
22    } else {
23       return mp_cmp_mag(a, b);
24    }
25 }
26 #endif