tommath/bn_mp_prime_is_prime.c

85 lines
1.9 KiB
C
Raw Normal View History

#include <tommath_private.h>
2004-10-29 18:07:18 -04:00
#ifdef BN_MP_PRIME_IS_PRIME_C
2003-03-22 10:10:20 -05:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
2003-08-04 21:24:44 -04:00
* LibTomMath is a library that provides multiple-precision
2003-03-22 10:10:20 -05:00
* integer arithmetic as well as number theoretic functionality.
*
2003-08-04 21:24:44 -04:00
* The library was designed directly after the MPI library by
2003-03-22 10:10:20 -05:00
* Michael Fromberger but has been written from scratch with
* additional optimizations in place.
*
* The library is free for all purposes without any express
* guarantee it works.
*
* Tom St Denis, tstdenis82@gmail.com, http://libtom.org
2003-03-22 10:10:20 -05:00
*/
/* performs a variable number of rounds of Miller-Rabin
*
* Probability of error after t rounds is no more than
2004-10-29 18:07:18 -04:00
2003-03-22 10:10:20 -05:00
*
* Sets result to 1 if probably prime, 0 otherwise
*/
2017-08-30 13:07:12 -04:00
int mp_prime_is_prime(mp_int *a, int t, int *result)
2003-03-22 10:10:20 -05:00
{
2017-08-30 13:13:53 -04:00
mp_int b;
int ix, err, res;
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
/* default to no */
*result = MP_NO;
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
/* valid value of t? */
if ((t <= 0) || (t > PRIME_SIZE)) {
return MP_VAL;
}
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
/* is the input equal to one of the primes in the table? */
for (ix = 0; ix < PRIME_SIZE; ix++) {
2004-12-22 21:40:37 -05:00
if (mp_cmp_d(a, ltm_prime_tab[ix]) == MP_EQ) {
2003-05-17 08:33:54 -04:00
*result = 1;
return MP_OKAY;
}
2017-08-30 13:13:53 -04:00
}
2003-05-17 08:33:54 -04:00
2017-08-30 13:13:53 -04:00
/* first perform trial division */
if ((err = mp_prime_is_divisible(a, &res)) != MP_OKAY) {
return err;
}
2003-07-12 10:31:43 -04:00
2017-08-30 13:13:53 -04:00
/* return if it was trivially divisible */
if (res == MP_YES) {
return MP_OKAY;
}
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
/* now perform the miller-rabin rounds */
if ((err = mp_init(&b)) != MP_OKAY) {
return err;
}
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
for (ix = 0; ix < t; ix++) {
/* set the prime */
mp_set(&b, ltm_prime_tab[ix]);
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
goto LBL_B;
}
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
if (res == MP_NO) {
goto LBL_B;
}
}
2003-03-22 10:10:20 -05:00
2017-08-30 13:13:53 -04:00
/* passed the test */
*result = MP_YES;
2017-08-28 16:34:46 -04:00
LBL_B:
2017-08-30 13:13:53 -04:00
mp_clear(&b);
return err;
2003-03-22 10:10:20 -05:00
}
2004-10-29 18:07:18 -04:00
#endif
2005-08-01 12:37:28 -04:00
2017-08-28 10:27:26 -04:00
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */