Coverage Report

Created: 2020-11-21 08:34

/src/botan/src/lib/math/numbertheory/monty_exp.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Montgomery Exponentiation
3
* (C) 1999-2010,2012,2018 Jack Lloyd
4
*     2016 Matthias Gierlings
5
*
6
* Botan is released under the Simplified BSD License (see license.txt)
7
*/
8
9
#include <botan/internal/monty_exp.h>
10
#include <botan/internal/ct_utils.h>
11
#include <botan/internal/rounding.h>
12
#include <botan/numthry.h>
13
#include <botan/reducer.h>
14
#include <botan/internal/monty.h>
15
16
namespace Botan {
17
18
class Montgomery_Exponentation_State
19
   {
20
   public:
21
      Montgomery_Exponentation_State(std::shared_ptr<const Montgomery_Params> params,
22
                                     const BigInt& g,
23
                                     size_t window_bits,
24
                                     bool const_time);
25
26
      BigInt exponentiation(const BigInt& k, size_t max_k_bits) const;
27
28
      BigInt exponentiation_vartime(const BigInt& k) const;
29
   private:
30
      std::shared_ptr<const Montgomery_Params> m_params;
31
      std::vector<Montgomery_Int> m_g;
32
      size_t m_window_bits;
33
      bool m_const_time;
34
   };
35
36
Montgomery_Exponentation_State::Montgomery_Exponentation_State(std::shared_ptr<const Montgomery_Params> params,
37
                                                               const BigInt& g,
38
                                                               size_t window_bits,
39
                                                               bool const_time) :
40
   m_params(params),
41
   m_window_bits(window_bits == 0 ? 4 : window_bits),
42
   m_const_time(const_time)
43
106k
   {
44
106k
   BOTAN_ARG_CHECK(g < m_params->p(), "Montgomery base too big");
45
46
106k
   if(m_window_bits < 1 || m_window_bits > 12) // really even 8 is too large ...
47
0
      throw Invalid_Argument("Invalid window bits for Montgomery exponentiation");
48
49
106k
   const size_t window_size = (static_cast<size_t>(1) << m_window_bits);
50
51
106k
   m_g.reserve(window_size);
52
53
106k
   m_g.push_back(Montgomery_Int(m_params, m_params->R1(), false));
54
55
106k
   m_g.push_back(Montgomery_Int(m_params, g));
56
57
1.51M
   for(size_t i = 2; i != window_size; ++i)
58
1.40M
      {
59
1.40M
      m_g.push_back(m_g[1] * m_g[i - 1]);
60
1.40M
      }
61
62
   // Resize each element to exactly p words
63
1.72M
   for(size_t i = 0; i != window_size; ++i)
64
1.62M
      {
65
1.62M
      m_g[i].fix_size();
66
1.62M
      if(const_time)
67
1.61M
         m_g[i].const_time_poison();
68
1.62M
      }
69
106k
   }
70
71
namespace {
72
73
void const_time_lookup(secure_vector<word>& output,
74
                       const std::vector<Montgomery_Int>& g,
75
                       size_t nibble)
76
5.79M
   {
77
5.79M
   BOTAN_ASSERT_NOMSG(g.size() % 2 == 0); // actually a power of 2
78
79
5.79M
   const size_t words = output.size();
80
81
5.79M
   clear_mem(output.data(), output.size());
82
83
52.1M
   for(size_t i = 0; i != g.size(); i += 2)
84
46.3M
      {
85
46.3M
      const secure_vector<word>& vec_0 = g[i  ].repr().get_word_vector();
86
46.3M
      const secure_vector<word>& vec_1 = g[i+1].repr().get_word_vector();
87
88
46.3M
      BOTAN_ASSERT_NOMSG(vec_0.size() >= words && vec_1.size() >= words);
89
90
46.3M
      const auto mask_0 = CT::Mask<word>::is_equal(nibble, i);
91
46.3M
      const auto mask_1 = CT::Mask<word>::is_equal(nibble, i+1);
92
93
1.13G
      for(size_t w = 0; w != words; ++w)
94
1.08G
         {
95
1.08G
         output[w] |= mask_0.if_set_return(vec_0[w]);
96
1.08G
         output[w] |= mask_1.if_set_return(vec_1[w]);
97
1.08G
         }
98
46.3M
      }
99
5.79M
   }
100
101
}
102
103
BigInt Montgomery_Exponentation_State::exponentiation(const BigInt& scalar, size_t max_k_bits) const
104
100k
   {
105
100k
   BOTAN_DEBUG_ASSERT(scalar.bits() <= max_k_bits);
106
   // TODO add a const-time implementation of above assert and use it in release builds
107
108
100k
   const size_t exp_nibbles = (max_k_bits + m_window_bits - 1) / m_window_bits;
109
110
100k
   if(exp_nibbles == 0)
111
7
      return 1;
112
113
100k
   secure_vector<word> e_bits(m_params->p_words());
114
100k
   secure_vector<word> ws;
115
116
100k
   const_time_lookup(e_bits, m_g, scalar.get_substring(m_window_bits*(exp_nibbles-1), m_window_bits));
117
100k
   Montgomery_Int x(m_params, e_bits.data(), e_bits.size(), false);
118
119
5.79M
   for(size_t i = exp_nibbles - 1; i > 0; --i)
120
5.69M
      {
121
5.69M
      x.square_this_n_times(ws, m_window_bits);
122
5.69M
      const_time_lookup(e_bits, m_g, scalar.get_substring(m_window_bits*(i-1), m_window_bits));
123
5.69M
      x.mul_by(e_bits, ws);
124
5.69M
      }
125
126
100k
   x.const_time_unpoison();
127
100k
   return x.value();
128
100k
   }
129
130
BigInt Montgomery_Exponentation_State::exponentiation_vartime(const BigInt& scalar) const
131
6.12k
   {
132
6.12k
   BOTAN_ASSERT_NOMSG(m_const_time == false);
133
134
6.12k
   const size_t exp_nibbles = (scalar.bits() + m_window_bits - 1) / m_window_bits;
135
136
6.12k
   secure_vector<word> ws;
137
138
6.12k
   if(exp_nibbles == 0)
139
0
      return 1;
140
141
6.12k
   Montgomery_Int x = m_g[scalar.get_substring(m_window_bits*(exp_nibbles-1), m_window_bits)];
142
143
342k
   for(size_t i = exp_nibbles - 1; i > 0; --i)
144
336k
      {
145
336k
      x.square_this_n_times(ws, m_window_bits);
146
147
336k
      const uint32_t nibble = scalar.get_substring(m_window_bits*(i-1), m_window_bits);
148
336k
      if(nibble > 0)
149
72.4k
         x.mul_by(m_g[nibble], ws);
150
336k
      }
151
152
6.12k
   x.const_time_unpoison();
153
6.12k
   return x.value();
154
6.12k
   }
155
156
std::shared_ptr<const Montgomery_Exponentation_State>
157
monty_precompute(std::shared_ptr<const Montgomery_Params> params,
158
                 const BigInt& g,
159
                 size_t window_bits,
160
                 bool const_time)
161
106k
   {
162
106k
   return std::make_shared<const Montgomery_Exponentation_State>(params, g, window_bits, const_time);
163
106k
   }
164
165
BigInt monty_execute(const Montgomery_Exponentation_State& precomputed_state,
166
                     const BigInt& k, size_t max_k_bits)
167
100k
   {
168
100k
   return precomputed_state.exponentiation(k, max_k_bits);
169
100k
   }
170
171
BigInt monty_execute_vartime(const Montgomery_Exponentation_State& precomputed_state,
172
                             const BigInt& k)
173
6.12k
   {
174
6.12k
   return precomputed_state.exponentiation_vartime(k);
175
6.12k
   }
176
177
BigInt monty_multi_exp(std::shared_ptr<const Montgomery_Params> params_p,
178
                       const BigInt& x_bn,
179
                       const BigInt& z1,
180
                       const BigInt& y_bn,
181
                       const BigInt& z2)
182
99
   {
183
99
   if(z1.is_negative() || z2.is_negative())
184
0
      throw Invalid_Argument("multi_exponentiate exponents must be positive");
185
186
99
   const size_t z_bits = round_up(std::max(z1.bits(), z2.bits()), 2);
187
188
99
   secure_vector<word> ws;
189
190
99
   const Montgomery_Int one(params_p, params_p->R1(), false);
191
   //const Montgomery_Int one(params_p, 1);
192
193
99
   const Montgomery_Int x1(params_p, x_bn);
194
99
   const Montgomery_Int x2 = x1.square(ws);
195
99
   const Montgomery_Int x3 = x2.mul(x1, ws);
196
197
99
   const Montgomery_Int y1(params_p, y_bn);
198
99
   const Montgomery_Int y2 = y1.square(ws);
199
99
   const Montgomery_Int y3 = y2.mul(y1, ws);
200
201
99
   const Montgomery_Int y1x1 = y1.mul(x1, ws);
202
99
   const Montgomery_Int y1x2 = y1.mul(x2, ws);
203
99
   const Montgomery_Int y1x3 = y1.mul(x3, ws);
204
205
99
   const Montgomery_Int y2x1 = y2.mul(x1, ws);
206
99
   const Montgomery_Int y2x2 = y2.mul(x2, ws);
207
99
   const Montgomery_Int y2x3 = y2.mul(x3, ws);
208
209
99
   const Montgomery_Int y3x1 = y3.mul(x1, ws);
210
99
   const Montgomery_Int y3x2 = y3.mul(x2, ws);
211
99
   const Montgomery_Int y3x3 = y3.mul(x3, ws);
212
213
99
   const Montgomery_Int* M[16] = {
214
99
      &one,
215
99
      &x1,                    // 0001
216
99
      &x2,                    // 0010
217
99
      &x3,                    // 0011
218
99
      &y1,                    // 0100
219
99
      &y1x1,
220
99
      &y1x2,
221
99
      &y1x3,
222
99
      &y2,                    // 1000
223
99
      &y2x1,
224
99
      &y2x2,
225
99
      &y2x3,
226
99
      &y3,                    // 1100
227
99
      &y3x1,
228
99
      &y3x2,
229
99
      &y3x3
230
99
   };
231
232
99
   Montgomery_Int H = one;
233
234
34.1k
   for(size_t i = 0; i != z_bits; i += 2)
235
34.0k
      {
236
34.0k
      if(i > 0)
237
33.9k
         {
238
33.9k
         H.square_this(ws);
239
33.9k
         H.square_this(ws);
240
33.9k
         }
241
242
34.0k
      const uint32_t z1_b = z1.get_substring(z_bits - i - 2, 2);
243
34.0k
      const uint32_t z2_b = z2.get_substring(z_bits - i - 2, 2);
244
245
34.0k
      const uint32_t z12 = (4*z2_b) + z1_b;
246
247
34.0k
      H.mul_by(*M[z12], ws);
248
34.0k
      }
249
250
99
   return H.value();
251
99
   }
252
253
}
254