1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 09:48:08 +00:00
simplesshd/dropbear/libtommath/bn_mp_invmod.c

24 lines
650 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_INVMOD_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
/* hac 14.61, pp608 */
2020-12-28 21:40:37 +00:00
mp_err mp_invmod(const mp_int *a, const mp_int *b, mp_int *c)
2014-12-10 21:56:49 +00:00
{
2020-12-28 21:40:37 +00:00
/* b cannot be negative and has to be >1 */
if ((b->sign == MP_NEG) || (mp_cmp_d(b, 1uL) != MP_GT)) {
return MP_VAL;
}
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
/* if the modulus is odd we can use a faster routine instead */
if (MP_HAS(S_MP_INVMOD_FAST) && MP_IS_ODD(b)) {
return s_mp_invmod_fast(a, b, c);
}
2014-12-10 21:56:49 +00:00
2020-12-28 21:40:37 +00:00
return MP_HAS(S_MP_INVMOD_SLOW)
? s_mp_invmod_slow(a, b, c)
: MP_VAL;
2014-12-10 21:56:49 +00:00
}
#endif