usbmodeswitch: Updated to v.1.2.6 from shibby's branch.
[tomato.git] / release / src / router / dropbear / libtommath / bn_mp_prime_is_prime.c
blobd93d46aae6bae9a9c11a0a15d290aa24ae01f5c5
1 #include <tommath.h>
2 #ifdef BN_MP_PRIME_IS_PRIME_C
3 /* LibTomMath, multiple-precision integer library -- Tom St Denis
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
12 * The library is free for all purposes without any express
13 * guarantee it works.
15 * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
18 /* performs a variable number of rounds of Miller-Rabin
20 * Probability of error after t rounds is no more than
23 * Sets result to 1 if probably prime, 0 otherwise
25 int mp_prime_is_prime (mp_int * a, int t, int *result)
27 mp_int b;
28 int ix, err, res;
30 /* default to no */
31 *result = MP_NO;
33 /* valid value of t? */
34 if (t <= 0 || t > PRIME_SIZE) {
35 return MP_VAL;
38 /* is the input equal to one of the primes in the table? */
39 for (ix = 0; ix < PRIME_SIZE; ix++) {
40 if (mp_cmp_d(a, ltm_prime_tab[ix]) == MP_EQ) {
41 *result = 1;
42 return MP_OKAY;
46 /* first perform trial division */
47 if ((err = mp_prime_is_divisible (a, &res)) != MP_OKAY) {
48 return err;
51 /* return if it was trivially divisible */
52 if (res == MP_YES) {
53 return MP_OKAY;
56 /* now perform the miller-rabin rounds */
57 if ((err = mp_init (&b)) != MP_OKAY) {
58 return err;
61 for (ix = 0; ix < t; ix++) {
62 /* set the prime */
63 mp_set (&b, ltm_prime_tab[ix]);
65 if ((err = mp_prime_miller_rabin (a, &b, &res)) != MP_OKAY) {
66 goto LBL_B;
69 if (res == MP_NO) {
70 goto LBL_B;
74 /* passed the test */
75 *result = MP_YES;
76 LBL_B:mp_clear (&b);
77 return err;
79 #endif
81 /* $Source: /cvs/libtom/libtommath/bn_mp_prime_is_prime.c,v $ */
82 /* $Revision: 1.3 $ */
83 /* $Date: 2006/03/31 14:18:44 $ */