Coverage Report

Created: 2020-06-30 13:58

/src/botan/src/lib/math/numbertheory/primality.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
* (C) 2016,2018 Jack Lloyd
3
*
4
* Botan is released under the Simplified BSD License (see license.txt)
5
*/
6
7
#include <botan/internal/primality.h>
8
#include <botan/internal/monty_exp.h>
9
#include <botan/bigint.h>
10
#include <botan/monty.h>
11
#include <botan/reducer.h>
12
#include <botan/rng.h>
13
#include <algorithm>
14
15
namespace Botan {
16
17
bool is_lucas_probable_prime(const BigInt& C, const Modular_Reducer& mod_C)
18
598
   {
19
598
   if(C <= 1)
20
0
      return false;
21
598
   else if(C == 2)
22
0
      return true;
23
598
   else if(C.is_even())
24
0
      return false;
25
598
   else if(C == 3 || C == 5 || C == 7 || C == 11 || C == 13)
26
5
      return true;
27
593
28
593
   BigInt D = 5;
29
593
30
593
   for(;;)
31
2.26k
      {
32
2.26k
      int32_t j = jacobi(D, C);
33
2.26k
      if(j == 0)
34
0
         return false;
35
2.26k
36
2.26k
      if(j == -1)
37
593
         break;
38
1.66k
39
1.66k
      // Check 5, -7, 9, -11, 13, -15, 17, ...
40
1.66k
      if(D.is_negative())
41
692
         {
42
692
         D.flip_sign();
43
692
         D += 2;
44
692
         }
45
975
      else
46
975
         {
47
975
         D += 2;
48
975
         D.flip_sign();
49
975
         }
50
1.66k
51
1.66k
      if(D == 17 && is_perfect_square(C).is_nonzero())
52
0
         return false;
53
1.66k
      }
54
593
55
593
   const BigInt K = C + 1;
56
593
   const size_t K_bits = K.bits() - 1;
57
593
58
593
   BigInt U = 1;
59
593
   BigInt V = 1;
60
593
61
593
   BigInt Ut, Vt, U2, V2;
62
593
63
256k
   for(size_t i = 0; i != K_bits; ++i)
64
256k
      {
65
256k
      const bool k_bit = K.get_bit(K_bits - 1 - i);
66
256k
67
256k
      Ut = mod_C.multiply(U, V);
68
256k
69
256k
      Vt = mod_C.reduce(mod_C.square(V) + mod_C.multiply(D, mod_C.square(U)));
70
256k
      Vt.ct_cond_add(Vt.is_odd(), C);
71
256k
      Vt >>= 1;
72
256k
      Vt = mod_C.reduce(Vt);
73
256k
74
256k
      U = Ut;
75
256k
      V = Vt;
76
256k
77
256k
      U2 = mod_C.reduce(Ut + Vt);
78
256k
      U2.ct_cond_add(U2.is_odd(), C);
79
256k
      U2 >>= 1;
80
256k
81
256k
      V2 = mod_C.reduce(Vt + Ut*D);
82
256k
      V2.ct_cond_add(V2.is_odd(), C);
83
256k
      V2 >>= 1;
84
256k
85
256k
      U.ct_cond_assign(k_bit, U2);
86
256k
      V.ct_cond_assign(k_bit, V2);
87
256k
      }
88
593
89
593
   return (U == 0);
90
593
   }
91
92
bool is_bailie_psw_probable_prime(const BigInt& n, const Modular_Reducer& mod_n)
93
554
   {
94
554
   auto monty_n = std::make_shared<Montgomery_Params>(n, mod_n);
95
554
   return passes_miller_rabin_test(n, mod_n, monty_n, 2) && is_lucas_probable_prime(n, mod_n);
96
554
   }
97
98
bool is_bailie_psw_probable_prime(const BigInt& n)
99
554
   {
100
554
   Modular_Reducer mod_n(n);
101
554
   return is_bailie_psw_probable_prime(n, mod_n);
102
554
   }
103
104
bool passes_miller_rabin_test(const BigInt& n,
105
                              const Modular_Reducer& mod_n,
106
                              const std::shared_ptr<Montgomery_Params>& monty_n,
107
                              const BigInt& a)
108
1.25k
   {
109
1.25k
   BOTAN_ASSERT_NOMSG(n > 1);
110
1.25k
111
1.25k
   const BigInt n_minus_1 = n - 1;
112
1.25k
   const size_t s = low_zero_bits(n_minus_1);
113
1.25k
   const BigInt nm1_s = n_minus_1 >> s;
114
1.25k
   const size_t n_bits = n.bits();
115
1.25k
116
1.25k
   const size_t powm_window = 4;
117
1.25k
118
1.25k
   auto powm_a_n = monty_precompute(monty_n, a, powm_window);
119
1.25k
120
1.25k
   BigInt y = monty_execute(*powm_a_n, nm1_s, n_bits);
121
1.25k
122
1.25k
   if(y == 1 || y == n_minus_1)
123
394
      return true;
124
857
125
68.2k
   for(size_t i = 1; i != s; ++i)
126
68.1k
      {
127
68.1k
      y = mod_n.square(y);
128
68.1k
129
68.1k
      if(y == 1) // found a non-trivial square root
130
1
         return false;
131
68.1k
132
68.1k
      /*
133
68.1k
      -1 is the trivial square root of unity, so ``a`` is not a
134
68.1k
      witness for this number - give up
135
68.1k
      */
136
68.1k
      if(y == n_minus_1)
137
692
         return true;
138
68.1k
      }
139
857
140
857
   return false;
141
857
   }
142
143
bool is_miller_rabin_probable_prime(const BigInt& n,
144
                                    const Modular_Reducer& mod_n,
145
                                    RandomNumberGenerator& rng,
146
                                    size_t test_iterations)
147
213
   {
148
213
   BOTAN_ASSERT_NOMSG(n > 1);
149
213
150
213
   auto monty_n = std::make_shared<Montgomery_Params>(n, mod_n);
151
213
152
794
   for(size_t i = 0; i != test_iterations; ++i)
153
701
      {
154
701
      const BigInt a = BigInt::random_integer(rng, 2, n);
155
701
156
701
      if(!passes_miller_rabin_test(n, mod_n, monty_n, a))
157
120
         return false;
158
701
      }
159
213
160
213
   // Failed to find a counterexample
161
213
   return true;
162
213
   }
163
164
165
size_t miller_rabin_test_iterations(size_t n_bits, size_t prob, bool random)
166
199
   {
167
199
   const size_t base = (prob + 2) / 2; // worst case 4^-t error rate
168
199
169
199
   /*
170
199
   * If the candidate prime was maliciously constructed, we can't rely
171
199
   * on arguments based on p being random.
172
199
   */
173
199
   if(random == false)
174
198
      return base;
175
1
176
1
   /*
177
1
   * For randomly chosen numbers we can use the estimates from
178
1
   * http://www.math.dartmouth.edu/~carlp/PDF/paper88.pdf
179
1
   *
180
1
   * These values are derived from the inequality for p(k,t) given on
181
1
   * the second page.
182
1
   */
183
1
   if(prob <= 128)
184
1
      {
185
1
      if(n_bits >= 1536)
186
0
         return 4; // < 2^-133
187
1
      if(n_bits >= 1024)
188
0
         return 6; // < 2^-133
189
1
      if(n_bits >= 512)
190
0
         return 12; // < 2^-129
191
1
      if(n_bits >= 256)
192
1
         return 29; // < 2^-128
193
0
      }
194
0
195
0
   /*
196
0
   If the user desires a smaller error probability than we have
197
0
   precomputed error estimates for, just fall back to using the worst
198
0
   case error rate.
199
0
   */
200
0
   return base;
201
0
   }
202
203
}