tommath/bn_mp_prime_is_prime.c

83 lines
1.9 KiB
C
Raw Normal View History

#include "tommath_private.h"
2004-10-29 22:07:18 +00:00
#ifdef BN_MP_PRIME_IS_PRIME_C
2003-03-22 15:10:20 +00:00
/* LibTomMath, multiple-precision integer library -- Tom St Denis
*
2003-08-05 01:24:44 +00:00
* LibTomMath is a library that provides multiple-precision
2003-03-22 15:10:20 +00:00
* integer arithmetic as well as number theoretic functionality.
*
2003-08-05 01:24:44 +00:00
* The library was designed directly after the MPI library by
2003-03-22 15:10:20 +00: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.
*/
/* performs a variable number of rounds of Miller-Rabin
*
* Probability of error after t rounds is no more than
2004-10-29 22:07:18 +00:00
2003-03-22 15:10:20 +00:00
*
* Sets result to 1 if probably prime, 0 otherwise
*/
2017-09-20 16:59:43 +02:00
int mp_prime_is_prime(const mp_int *a, int t, int *result)
2003-03-22 15:10:20 +00:00
{
2017-08-30 19:13:53 +02:00
mp_int b;
int ix, err, res;
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
/* default to no */
*result = MP_NO;
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
/* valid value of t? */
if ((t <= 0) || (t > PRIME_SIZE)) {
return MP_VAL;
}
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
/* is the input equal to one of the primes in the table? */
for (ix = 0; ix < PRIME_SIZE; ix++) {
2004-12-23 02:40:37 +00:00
if (mp_cmp_d(a, ltm_prime_tab[ix]) == MP_EQ) {
2003-05-17 12:33:54 +00:00
*result = 1;
return MP_OKAY;
}
2017-08-30 19:13:53 +02:00
}
2003-05-17 12:33:54 +00:00
2017-08-30 19:13:53 +02:00
/* first perform trial division */
if ((err = mp_prime_is_divisible(a, &res)) != MP_OKAY) {
return err;
}
2003-07-12 14:31:43 +00:00
2017-08-30 19:13:53 +02:00
/* return if it was trivially divisible */
if (res == MP_YES) {
return MP_OKAY;
}
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
/* now perform the miller-rabin rounds */
if ((err = mp_init(&b)) != MP_OKAY) {
return err;
}
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
for (ix = 0; ix < t; ix++) {
/* set the prime */
mp_set(&b, ltm_prime_tab[ix]);
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
if ((err = mp_prime_miller_rabin(a, &b, &res)) != MP_OKAY) {
goto LBL_B;
}
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
if (res == MP_NO) {
goto LBL_B;
}
}
2003-03-22 15:10:20 +00:00
2017-08-30 19:13:53 +02:00
/* passed the test */
*result = MP_YES;
2017-08-28 22:34:46 +02:00
LBL_B:
2017-08-30 19:13:53 +02:00
mp_clear(&b);
return err;
2003-03-22 15:10:20 +00:00
}
2004-10-29 22:07:18 +00:00
#endif
2005-08-01 16:37:28 +00:00
2017-08-28 16:27:26 +02:00
/* ref: $Format:%D$ */
/* git commit: $Format:%H$ */
/* commit time: $Format:%ai$ */