2018-05-02 19:43:17 +00:00
|
|
|
#include "tommath_private.h"
|
2019-10-19 14:24:39 +00:00
|
|
|
#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
|
2019-05-22 13:34:49 +00:00
|
|
|
* 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
|
|
|
|
*/
|
2019-05-22 13:34:49 +00:00
|
|
|
mp_err s_mp_prime_is_divisible(const mp_int *a, mp_bool *result)
|
2003-03-22 15:10:20 +00:00
|
|
|
{
|
2019-05-12 22:22:18 +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 = MP_NO;
|
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] */
|
2019-05-22 13:34:49 +00:00
|
|
|
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) {
|
2017-08-30 17:13:53 +00:00
|
|
|
*result = MP_YES;
|
|
|
|
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
|