libtommath/s_mp_prime_is_divisible.c

36 lines
807 B
C
Raw Normal View History

#include "tommath_private.h"
#ifdef S_MP_PRIME_IS_DIVISIBLE_C
2019-04-07 13:29:11 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
2003-03-22 15:10:20 +00:00
2017-08-30 03:51:11 +00:00
/* determines if an integers is divisible by one
* of the first PRIME_SIZE primes or not
2003-03-22 15:10:20 +00:00
*
* sets result to 0 if not, 1 if yes
*/
mp_err s_mp_prime_is_divisible(const mp_int *a, bool *result)
2003-03-22 15:10:20 +00:00
{
int ix;
mp_err err;
2017-08-30 17:13:53 +00:00
mp_digit res;
2003-03-22 15:10:20 +00:00
2017-08-30 17:13:53 +00:00
/* default to not */
*result = false;
2003-03-22 15:10:20 +00:00
2019-10-16 07:21:19 +00:00
for (ix = 0; ix < MP_PRIME_TAB_SIZE; ix++) {
2017-08-30 17:13:53 +00:00
/* what is a mod LBL_prime_tab[ix] */
if ((err = mp_mod_d(a, s_mp_prime_tab[ix], &res)) != MP_OKAY) {
2017-08-30 17:13:53 +00:00
return err;
}
2003-03-22 15:10:20 +00:00
2017-08-30 17:13:53 +00:00
/* is the residue zero? */
2017-10-15 17:57:12 +00:00
if (res == 0u) {
*result = true;
2017-08-30 17:13:53 +00:00
return MP_OKAY;
}
}
2003-03-22 15:10:20 +00:00
2017-08-30 17:13:53 +00:00
return MP_OKAY;
2003-03-22 15:10:20 +00:00
}
2004-10-29 22:07:18 +00:00
#endif