2018-05-02 15:43:17 -04:00
|
|
|
#include "tommath_private.h"
|
2004-10-29 18:07:18 -04:00
|
|
|
#ifdef BN_MP_PRIME_RABIN_MILLER_TRIALS_C
|
2003-12-24 13:59:22 -05:00
|
|
|
/* LibTomMath, multiple-precision integer library -- Tom St Denis
|
|
|
|
*
|
|
|
|
* LibTomMath is a library that provides multiple-precision
|
|
|
|
* integer arithmetic as well as number theoretic functionality.
|
|
|
|
*
|
|
|
|
* The library was designed directly after the MPI library by
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2004-10-29 18:07:18 -04:00
|
|
|
|
2003-12-24 13:59:22 -05:00
|
|
|
static const struct {
|
|
|
|
int k, t;
|
|
|
|
} sizes[] = {
|
2018-05-27 16:05:52 -04:00
|
|
|
{ 80, -1 }, /* Use deterministic algorithm for size <= 80 bits */
|
|
|
|
{ 81, 39 },
|
|
|
|
{ 96, 37 },
|
|
|
|
{ 128, 32 },
|
|
|
|
{ 160, 27 },
|
|
|
|
{ 192, 21 },
|
2017-08-30 13:13:53 -04:00
|
|
|
{ 256, 16 },
|
|
|
|
{ 384, 10 },
|
|
|
|
{ 512, 7 },
|
|
|
|
{ 640, 6 },
|
|
|
|
{ 768, 5 },
|
|
|
|
{ 896, 4 },
|
2018-05-27 16:05:52 -04:00
|
|
|
{ 1024, 4 },
|
|
|
|
{ 2048, 2 },
|
|
|
|
{ 4096, 1 },
|
2004-10-29 18:07:18 -04:00
|
|
|
};
|
2003-12-24 13:59:22 -05:00
|
|
|
|
2018-05-27 16:05:52 -04:00
|
|
|
/* returns # of RM trials required for a given bit size and max. error of 2^(-96)*/
|
2003-12-24 13:59:22 -05:00
|
|
|
int mp_prime_rabin_miller_trials(int size)
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
|
|
|
|
for (x = 0; x < (int)(sizeof(sizes)/(sizeof(sizes[0]))); x++) {
|
2017-08-30 13:13:53 -04:00
|
|
|
if (sizes[x].k == size) {
|
|
|
|
return sizes[x].t;
|
|
|
|
} else if (sizes[x].k > size) {
|
|
|
|
return (x == 0) ? sizes[0].t : sizes[x - 1].t;
|
|
|
|
}
|
2003-12-24 13:59:22 -05:00
|
|
|
}
|
2004-10-29 18:07:18 -04:00
|
|
|
return sizes[x-1].t + 1;
|
2003-12-24 13:59:22 -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$ */
|