/src/openssl35/crypto/bn/bn_lib.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <assert.h> |
11 | | #include <limits.h> |
12 | | #include "internal/cryptlib.h" |
13 | | #include "internal/endian.h" |
14 | | #include "bn_local.h" |
15 | | #include <openssl/opensslconf.h> |
16 | | #include "internal/constant_time.h" |
17 | | |
18 | | /* This stuff appears to be completely unused, so is deprecated */ |
19 | | #ifndef OPENSSL_NO_DEPRECATED_0_9_8 |
20 | | /*- |
21 | | * For a 32 bit machine |
22 | | * 2 - 4 == 128 |
23 | | * 3 - 8 == 256 |
24 | | * 4 - 16 == 512 |
25 | | * 5 - 32 == 1024 |
26 | | * 6 - 64 == 2048 |
27 | | * 7 - 128 == 4096 |
28 | | * 8 - 256 == 8192 |
29 | | */ |
30 | | static int bn_limit_bits = 0; |
31 | | static int bn_limit_num = 8; /* (1<<bn_limit_bits) */ |
32 | | static int bn_limit_bits_low = 0; |
33 | | static int bn_limit_num_low = 8; /* (1<<bn_limit_bits_low) */ |
34 | | static int bn_limit_bits_high = 0; |
35 | | static int bn_limit_num_high = 8; /* (1<<bn_limit_bits_high) */ |
36 | | static int bn_limit_bits_mont = 0; |
37 | | static int bn_limit_num_mont = 8; /* (1<<bn_limit_bits_mont) */ |
38 | | |
39 | | void BN_set_params(int mult, int high, int low, int mont) |
40 | 0 | { |
41 | 0 | if (mult >= 0) { |
42 | 0 | if (mult > (int)(sizeof(int) * 8) - 1) |
43 | 0 | mult = sizeof(int) * 8 - 1; |
44 | 0 | bn_limit_bits = mult; |
45 | 0 | bn_limit_num = 1 << mult; |
46 | 0 | } |
47 | 0 | if (high >= 0) { |
48 | 0 | if (high > (int)(sizeof(int) * 8) - 1) |
49 | 0 | high = sizeof(int) * 8 - 1; |
50 | 0 | bn_limit_bits_high = high; |
51 | 0 | bn_limit_num_high = 1 << high; |
52 | 0 | } |
53 | 0 | if (low >= 0) { |
54 | 0 | if (low > (int)(sizeof(int) * 8) - 1) |
55 | 0 | low = sizeof(int) * 8 - 1; |
56 | 0 | bn_limit_bits_low = low; |
57 | 0 | bn_limit_num_low = 1 << low; |
58 | 0 | } |
59 | 0 | if (mont >= 0) { |
60 | 0 | if (mont > (int)(sizeof(int) * 8) - 1) |
61 | 0 | mont = sizeof(int) * 8 - 1; |
62 | 0 | bn_limit_bits_mont = mont; |
63 | 0 | bn_limit_num_mont = 1 << mont; |
64 | 0 | } |
65 | 0 | } |
66 | | |
67 | | int BN_get_params(int which) |
68 | 0 | { |
69 | 0 | if (which == 0) |
70 | 0 | return bn_limit_bits; |
71 | 0 | else if (which == 1) |
72 | 0 | return bn_limit_bits_high; |
73 | 0 | else if (which == 2) |
74 | 0 | return bn_limit_bits_low; |
75 | 0 | else if (which == 3) |
76 | 0 | return bn_limit_bits_mont; |
77 | 0 | else |
78 | 0 | return 0; |
79 | 0 | } |
80 | | #endif |
81 | | |
82 | | const BIGNUM *BN_value_one(void) |
83 | 1.58M | { |
84 | 1.58M | static const BN_ULONG data_one = 1L; |
85 | 1.58M | static const BIGNUM const_one = { |
86 | 1.58M | (BN_ULONG *)&data_one, 1, 1, 0, BN_FLG_STATIC_DATA |
87 | 1.58M | }; |
88 | | |
89 | 1.58M | return &const_one; |
90 | 1.58M | } |
91 | | |
92 | | /* |
93 | | * Old Visual Studio ARM compiler miscompiles BN_num_bits_word() |
94 | | * https://mta.openssl.org/pipermail/openssl-users/2018-August/008465.html |
95 | | */ |
96 | | #if defined(_MSC_VER) && defined(_ARM_) && defined(_WIN32_WCE) \ |
97 | | && _MSC_VER>=1400 && _MSC_VER<1501 |
98 | | # define MS_BROKEN_BN_num_bits_word |
99 | | # pragma optimize("", off) |
100 | | #endif |
101 | | int BN_num_bits_word(BN_ULONG l) |
102 | 200M | { |
103 | 200M | BN_ULONG x, mask; |
104 | 200M | int bits = (l != 0); |
105 | | |
106 | 200M | #if BN_BITS2 > 32 |
107 | 200M | x = l >> 32; |
108 | 200M | mask = (0 - x) & BN_MASK2; |
109 | 200M | mask = (0 - (mask >> (BN_BITS2 - 1))); |
110 | 200M | bits += 32 & mask; |
111 | 200M | l ^= (x ^ l) & mask; |
112 | 200M | #endif |
113 | | |
114 | 200M | x = l >> 16; |
115 | 200M | mask = (0 - x) & BN_MASK2; |
116 | 200M | mask = (0 - (mask >> (BN_BITS2 - 1))); |
117 | 200M | bits += 16 & mask; |
118 | 200M | l ^= (x ^ l) & mask; |
119 | | |
120 | 200M | x = l >> 8; |
121 | 200M | mask = (0 - x) & BN_MASK2; |
122 | 200M | mask = (0 - (mask >> (BN_BITS2 - 1))); |
123 | 200M | bits += 8 & mask; |
124 | 200M | l ^= (x ^ l) & mask; |
125 | | |
126 | 200M | x = l >> 4; |
127 | 200M | mask = (0 - x) & BN_MASK2; |
128 | 200M | mask = (0 - (mask >> (BN_BITS2 - 1))); |
129 | 200M | bits += 4 & mask; |
130 | 200M | l ^= (x ^ l) & mask; |
131 | | |
132 | 200M | x = l >> 2; |
133 | 200M | mask = (0 - x) & BN_MASK2; |
134 | 200M | mask = (0 - (mask >> (BN_BITS2 - 1))); |
135 | 200M | bits += 2 & mask; |
136 | 200M | l ^= (x ^ l) & mask; |
137 | | |
138 | 200M | x = l >> 1; |
139 | 200M | mask = (0 - x) & BN_MASK2; |
140 | 200M | mask = (0 - (mask >> (BN_BITS2 - 1))); |
141 | 200M | bits += 1 & mask; |
142 | | |
143 | 200M | return bits; |
144 | 200M | } |
145 | | #ifdef MS_BROKEN_BN_num_bits_word |
146 | | # pragma optimize("", on) |
147 | | #endif |
148 | | |
149 | | /* |
150 | | * This function still leaks `a->dmax`: it's caller's responsibility to |
151 | | * expand the input `a` in advance to a public length. |
152 | | */ |
153 | | static ossl_inline |
154 | | int bn_num_bits_consttime(const BIGNUM *a) |
155 | 7.82M | { |
156 | 7.82M | int j, ret; |
157 | 7.82M | unsigned int mask, past_i; |
158 | 7.82M | int i = a->top - 1; |
159 | 7.82M | bn_check_top(a); |
160 | | |
161 | 60.6M | for (j = 0, past_i = 0, ret = 0; j < a->dmax; j++) { |
162 | 52.7M | mask = constant_time_eq_int(i, j); /* 0xff..ff if i==j, 0x0 otherwise */ |
163 | | |
164 | 52.7M | ret += BN_BITS2 & (~mask & ~past_i); |
165 | 52.7M | ret += BN_num_bits_word(a->d[j]) & mask; |
166 | | |
167 | 52.7M | past_i |= mask; /* past_i will become 0xff..ff after i==j */ |
168 | 52.7M | } |
169 | | |
170 | | /* |
171 | | * if BN_is_zero(a) => i is -1 and ret contains garbage, so we mask the |
172 | | * final result. |
173 | | */ |
174 | 7.82M | mask = ~(constant_time_eq_int(i, ((int)-1))); |
175 | | |
176 | 7.82M | return ret & mask; |
177 | 7.82M | } |
178 | | |
179 | | int BN_num_bits(const BIGNUM *a) |
180 | 33.7M | { |
181 | 33.7M | int i = a->top - 1; |
182 | 33.7M | bn_check_top(a); |
183 | | |
184 | 33.7M | if (a->flags & BN_FLG_CONSTTIME) { |
185 | | /* |
186 | | * We assume that BIGNUMs flagged as CONSTTIME have also been expanded |
187 | | * so that a->dmax is not leaking secret information. |
188 | | * |
189 | | * In other words, it's the caller's responsibility to ensure `a` has |
190 | | * been preallocated in advance to a public length if we hit this |
191 | | * branch. |
192 | | * |
193 | | */ |
194 | 6.35M | return bn_num_bits_consttime(a); |
195 | 6.35M | } |
196 | | |
197 | 27.4M | if (BN_is_zero(a)) |
198 | 329k | return 0; |
199 | | |
200 | 27.0M | return ((i * BN_BITS2) + BN_num_bits_word(a->d[i])); |
201 | 27.4M | } |
202 | | |
203 | | static void bn_free_d(BIGNUM *a, int clear) |
204 | 63.2M | { |
205 | 63.2M | if (BN_get_flags(a, BN_FLG_SECURE)) |
206 | 1.54M | OPENSSL_secure_clear_free(a->d, a->dmax * sizeof(a->d[0])); |
207 | 61.7M | else if (clear != 0) |
208 | 37.1M | OPENSSL_clear_free(a->d, a->dmax * sizeof(a->d[0])); |
209 | 24.5M | else |
210 | 24.5M | OPENSSL_free(a->d); |
211 | 63.2M | } |
212 | | |
213 | | |
214 | | void BN_clear_free(BIGNUM *a) |
215 | 31.6M | { |
216 | 31.6M | if (a == NULL) |
217 | 5.48M | return; |
218 | 26.2M | if (a->d != NULL && !BN_get_flags(a, BN_FLG_STATIC_DATA)) |
219 | 23.6M | bn_free_d(a, 1); |
220 | 26.2M | if (BN_get_flags(a, BN_FLG_MALLOCED)) { |
221 | 2.92M | OPENSSL_cleanse(a, sizeof(*a)); |
222 | 2.92M | OPENSSL_free(a); |
223 | 2.92M | } |
224 | 26.2M | } |
225 | | |
226 | | void BN_free(BIGNUM *a) |
227 | 41.4M | { |
228 | 41.4M | if (a == NULL) |
229 | 16.8M | return; |
230 | 24.6M | if (!BN_get_flags(a, BN_FLG_STATIC_DATA)) |
231 | 24.5M | bn_free_d(a, 0); |
232 | 24.6M | if (a->flags & BN_FLG_MALLOCED) |
233 | 24.5M | OPENSSL_free(a); |
234 | 24.6M | } |
235 | | |
236 | | void bn_init(BIGNUM *a) |
237 | 61.4M | { |
238 | 61.4M | static BIGNUM nilbn; |
239 | | |
240 | 61.4M | *a = nilbn; |
241 | 61.4M | bn_check_top(a); |
242 | 61.4M | } |
243 | | |
244 | | BIGNUM *BN_new(void) |
245 | 27.4M | { |
246 | 27.4M | BIGNUM *ret; |
247 | | |
248 | 27.4M | if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) |
249 | 0 | return NULL; |
250 | 27.4M | ret->flags = BN_FLG_MALLOCED; |
251 | 27.4M | bn_check_top(ret); |
252 | 27.4M | return ret; |
253 | 27.4M | } |
254 | | |
255 | | BIGNUM *BN_secure_new(void) |
256 | 1.72M | { |
257 | 1.72M | BIGNUM *ret = BN_new(); |
258 | | |
259 | 1.72M | if (ret != NULL) |
260 | 1.72M | ret->flags |= BN_FLG_SECURE; |
261 | 1.72M | return ret; |
262 | 1.72M | } |
263 | | |
264 | | /* This is used by bn_expand2() */ |
265 | | /* The caller MUST check that words > b->dmax before calling this */ |
266 | | static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words) |
267 | 50.7M | { |
268 | 50.7M | BN_ULONG *a = NULL; |
269 | | |
270 | 50.7M | if (words > (INT_MAX / (4 * BN_BITS2))) { |
271 | 0 | ERR_raise(ERR_LIB_BN, BN_R_BIGNUM_TOO_LONG); |
272 | 0 | return NULL; |
273 | 0 | } |
274 | 50.7M | if (BN_get_flags(b, BN_FLG_STATIC_DATA)) { |
275 | 0 | ERR_raise(ERR_LIB_BN, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA); |
276 | 0 | return NULL; |
277 | 0 | } |
278 | 50.7M | if (BN_get_flags(b, BN_FLG_SECURE)) |
279 | 1.26M | a = OPENSSL_secure_zalloc(words * sizeof(*a)); |
280 | 49.4M | else |
281 | 49.4M | a = OPENSSL_zalloc(words * sizeof(*a)); |
282 | 50.7M | if (a == NULL) |
283 | 0 | return NULL; |
284 | | |
285 | 50.7M | assert(b->top <= words); |
286 | 50.7M | if (b->top > 0) |
287 | 6.23M | memcpy(a, b->d, sizeof(*a) * b->top); |
288 | | |
289 | 50.7M | return a; |
290 | 50.7M | } |
291 | | |
292 | | /* |
293 | | * This is an internal function that should not be used in applications. It |
294 | | * ensures that 'b' has enough room for a 'words' word number and initialises |
295 | | * any unused part of b->d with leading zeros. It is mostly used by the |
296 | | * various BIGNUM routines. If there is an error, NULL is returned. If not, |
297 | | * 'b' is returned. |
298 | | */ |
299 | | |
300 | | BIGNUM *bn_expand2(BIGNUM *b, int words) |
301 | 50.7M | { |
302 | 50.7M | if (words > b->dmax) { |
303 | 50.7M | BN_ULONG *a = bn_expand_internal(b, words); |
304 | 50.7M | if (!a) |
305 | 0 | return NULL; |
306 | 50.7M | if (b->d != NULL) |
307 | 12.6M | bn_free_d(b, 1); |
308 | 50.7M | b->d = a; |
309 | 50.7M | b->dmax = words; |
310 | 50.7M | } |
311 | | |
312 | 50.7M | return b; |
313 | 50.7M | } |
314 | | |
315 | | BIGNUM *BN_dup(const BIGNUM *a) |
316 | 3.06M | { |
317 | 3.06M | BIGNUM *t; |
318 | | |
319 | 3.06M | if (a == NULL) |
320 | 0 | return NULL; |
321 | 3.06M | bn_check_top(a); |
322 | | |
323 | 3.06M | t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new(); |
324 | 3.06M | if (t == NULL) |
325 | 0 | return NULL; |
326 | 3.06M | if (!BN_copy(t, a)) { |
327 | 0 | BN_free(t); |
328 | 0 | return NULL; |
329 | 0 | } |
330 | 3.06M | bn_check_top(t); |
331 | 3.06M | return t; |
332 | 3.06M | } |
333 | | |
334 | | BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b) |
335 | 108M | { |
336 | 108M | int bn_words; |
337 | | |
338 | 108M | bn_check_top(b); |
339 | | |
340 | 108M | bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top; |
341 | | |
342 | 108M | if (a == b) |
343 | 9 | return a; |
344 | 108M | if (bn_wexpand(a, bn_words) == NULL) |
345 | 0 | return NULL; |
346 | | |
347 | 108M | if (b->top > 0) |
348 | 107M | memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words); |
349 | | |
350 | 108M | a->neg = b->neg; |
351 | 108M | a->top = b->top; |
352 | 108M | a->flags |= b->flags & BN_FLG_FIXED_TOP; |
353 | 108M | bn_check_top(a); |
354 | 108M | return a; |
355 | 108M | } |
356 | | |
357 | 0 | #define FLAGS_DATA(flags) ((flags) & (BN_FLG_STATIC_DATA \ |
358 | 0 | | BN_FLG_CONSTTIME \ |
359 | 0 | | BN_FLG_SECURE \ |
360 | 0 | | BN_FLG_FIXED_TOP)) |
361 | 0 | #define FLAGS_STRUCT(flags) ((flags) & (BN_FLG_MALLOCED)) |
362 | | |
363 | | void BN_swap(BIGNUM *a, BIGNUM *b) |
364 | 0 | { |
365 | 0 | int flags_old_a, flags_old_b; |
366 | 0 | BN_ULONG *tmp_d; |
367 | 0 | int tmp_top, tmp_dmax, tmp_neg; |
368 | |
|
369 | 0 | bn_check_top(a); |
370 | 0 | bn_check_top(b); |
371 | |
|
372 | 0 | flags_old_a = a->flags; |
373 | 0 | flags_old_b = b->flags; |
374 | |
|
375 | 0 | tmp_d = a->d; |
376 | 0 | tmp_top = a->top; |
377 | 0 | tmp_dmax = a->dmax; |
378 | 0 | tmp_neg = a->neg; |
379 | |
|
380 | 0 | a->d = b->d; |
381 | 0 | a->top = b->top; |
382 | 0 | a->dmax = b->dmax; |
383 | 0 | a->neg = b->neg; |
384 | |
|
385 | 0 | b->d = tmp_d; |
386 | 0 | b->top = tmp_top; |
387 | 0 | b->dmax = tmp_dmax; |
388 | 0 | b->neg = tmp_neg; |
389 | |
|
390 | 0 | a->flags = FLAGS_STRUCT(flags_old_a) | FLAGS_DATA(flags_old_b); |
391 | 0 | b->flags = FLAGS_STRUCT(flags_old_b) | FLAGS_DATA(flags_old_a); |
392 | 0 | bn_check_top(a); |
393 | 0 | bn_check_top(b); |
394 | 0 | } |
395 | | |
396 | | void BN_clear(BIGNUM *a) |
397 | 380k | { |
398 | 380k | if (a == NULL) |
399 | 0 | return; |
400 | 380k | bn_check_top(a); |
401 | 380k | if (a->d != NULL) |
402 | 39.6k | OPENSSL_cleanse(a->d, sizeof(*a->d) * a->dmax); |
403 | 380k | a->neg = 0; |
404 | 380k | a->top = 0; |
405 | 380k | a->flags &= ~BN_FLG_FIXED_TOP; |
406 | 380k | } |
407 | | |
408 | | BN_ULONG BN_get_word(const BIGNUM *a) |
409 | 408 | { |
410 | 408 | if (a->top > 1) |
411 | 12 | return BN_MASK2; |
412 | 396 | else if (a->top == 1) |
413 | 338 | return a->d[0]; |
414 | | /* a->top == 0 */ |
415 | 58 | return 0; |
416 | 408 | } |
417 | | |
418 | | int BN_set_word(BIGNUM *a, BN_ULONG w) |
419 | 2.56M | { |
420 | 2.56M | bn_check_top(a); |
421 | 2.56M | if (bn_expand(a, (int)sizeof(BN_ULONG) * 8) == NULL) |
422 | 0 | return 0; |
423 | 2.56M | a->neg = 0; |
424 | 2.56M | a->d[0] = w; |
425 | 2.56M | a->top = (w ? 1 : 0); |
426 | 2.56M | a->flags &= ~BN_FLG_FIXED_TOP; |
427 | 2.56M | bn_check_top(a); |
428 | 2.56M | return 1; |
429 | 2.56M | } |
430 | | |
431 | | typedef enum {BIG, LITTLE} endianness_t; |
432 | | typedef enum {SIGNED, UNSIGNED} signedness_t; |
433 | | |
434 | | static BIGNUM *bin2bn(const unsigned char *s, int len, BIGNUM *ret, |
435 | | endianness_t endianness, signedness_t signedness) |
436 | 10.1M | { |
437 | 10.1M | int inc; |
438 | 10.1M | const unsigned char *s2; |
439 | 10.1M | int inc2; |
440 | 10.1M | int neg = 0, xor = 0, carry = 0; |
441 | 10.1M | unsigned int i; |
442 | 10.1M | unsigned int n; |
443 | 10.1M | BIGNUM *bn = NULL; |
444 | | |
445 | | /* Negative length is not acceptable */ |
446 | 10.1M | if (len < 0) |
447 | 0 | return NULL; |
448 | | |
449 | 10.1M | if (ret == NULL) |
450 | 6.10M | ret = bn = BN_new(); |
451 | 10.1M | if (ret == NULL) |
452 | 0 | return NULL; |
453 | 10.1M | bn_check_top(ret); |
454 | | |
455 | | /* |
456 | | * If the input has no bits, the number is considered zero. |
457 | | * This makes calls with s==NULL and len==0 safe. |
458 | | */ |
459 | 10.1M | if (len == 0) { |
460 | 337k | BN_clear(ret); |
461 | 337k | return ret; |
462 | 337k | } |
463 | | |
464 | | /* |
465 | | * The loop that does the work iterates from least to most |
466 | | * significant BIGNUM chunk, so we adapt parameters to transfer |
467 | | * input bytes accordingly. |
468 | | */ |
469 | 9.81M | if (endianness == LITTLE) { |
470 | 996k | s2 = s + len - 1; |
471 | 996k | inc2 = -1; |
472 | 996k | inc = 1; |
473 | 8.81M | } else { |
474 | 8.81M | s2 = s; |
475 | 8.81M | inc2 = 1; |
476 | 8.81M | inc = -1; |
477 | 8.81M | s += len - 1; |
478 | 8.81M | } |
479 | | |
480 | | /* Take note of the signedness of the input bytes*/ |
481 | 9.81M | if (signedness == SIGNED) { |
482 | 0 | neg = !!(*s2 & 0x80); |
483 | 0 | xor = neg ? 0xff : 0x00; |
484 | 0 | carry = neg; |
485 | 0 | } |
486 | | |
487 | | /* |
488 | | * Skip leading sign extensions (the value of |xor|). |
489 | | * This is the only spot where |s2| and |inc2| are used. |
490 | | */ |
491 | 19.2M | for ( ; len > 0 && *s2 == xor; s2 += inc2, len--) |
492 | 9.47M | continue; |
493 | | |
494 | | /* |
495 | | * If there was a set of 0xff, we backtrack one byte unless the next |
496 | | * one has a sign bit, as the last 0xff is then part of the actual |
497 | | * number, rather then a mere sign extension. |
498 | | */ |
499 | 9.81M | if (xor == 0xff) { |
500 | 0 | if (len == 0 || !(*s2 & 0x80)) |
501 | 0 | len++; |
502 | 0 | } |
503 | | /* If it was all zeros, we're done */ |
504 | 9.81M | if (len == 0) { |
505 | 159k | ret->top = 0; |
506 | 159k | return ret; |
507 | 159k | } |
508 | 9.65M | n = ((len - 1) / BN_BYTES) + 1; /* Number of resulting bignum chunks */ |
509 | 9.65M | if (bn_wexpand(ret, (int)n) == NULL) { |
510 | 0 | BN_free(bn); |
511 | 0 | return NULL; |
512 | 0 | } |
513 | 9.65M | ret->top = n; |
514 | 9.65M | ret->neg = neg; |
515 | 97.7M | for (i = 0; n-- > 0; i++) { |
516 | 88.1M | BN_ULONG l = 0; /* Accumulator */ |
517 | 88.1M | unsigned int m = 0; /* Offset in a bignum chunk, in bits */ |
518 | | |
519 | 760M | for (; len > 0 && m < BN_BYTES * 8; len--, s += inc, m += 8) { |
520 | 672M | BN_ULONG byte_xored = *s ^ xor; |
521 | 672M | BN_ULONG byte = (byte_xored + carry) & 0xff; |
522 | | |
523 | 672M | carry = byte_xored > byte; /* Implicit 1 or 0 */ |
524 | 672M | l |= (byte << m); |
525 | 672M | } |
526 | 88.1M | ret->d[i] = l; |
527 | 88.1M | } |
528 | | /* |
529 | | * need to call this due to clear byte at top if avoiding having the top |
530 | | * bit set (-ve number) |
531 | | */ |
532 | 9.65M | bn_correct_top(ret); |
533 | 9.65M | return ret; |
534 | 9.65M | } |
535 | | |
536 | | BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret) |
537 | 9.15M | { |
538 | 9.15M | return bin2bn(s, len, ret, BIG, UNSIGNED); |
539 | 9.15M | } |
540 | | |
541 | | BIGNUM *BN_signed_bin2bn(const unsigned char *s, int len, BIGNUM *ret) |
542 | 0 | { |
543 | 0 | return bin2bn(s, len, ret, BIG, SIGNED); |
544 | 0 | } |
545 | | |
546 | | static int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen, |
547 | | endianness_t endianness, signedness_t signedness) |
548 | 1.73M | { |
549 | 1.73M | int inc; |
550 | 1.73M | int n, n8; |
551 | 1.73M | int xor = 0, carry = 0, ext = 0; |
552 | 1.73M | size_t i, lasti, j, atop, mask; |
553 | 1.73M | BN_ULONG l; |
554 | | |
555 | | /* |
556 | | * In case |a| is fixed-top, BN_num_bits can return bogus length, |
557 | | * but it's assumed that fixed-top inputs ought to be "nominated" |
558 | | * even for padded output, so it works out... |
559 | | */ |
560 | 1.73M | n8 = BN_num_bits(a); |
561 | 1.73M | n = (n8 + 7) / 8; /* This is what BN_num_bytes() does */ |
562 | | |
563 | | /* Take note of the signedness of the bignum */ |
564 | 1.73M | if (signedness == SIGNED) { |
565 | 0 | xor = a->neg ? 0xff : 0x00; |
566 | 0 | carry = a->neg; |
567 | | |
568 | | /* |
569 | | * if |n * 8 == n|, then the MSbit is set, otherwise unset. |
570 | | * We must compensate with one extra byte if that doesn't |
571 | | * correspond to the signedness of the bignum with regards |
572 | | * to 2's complement. |
573 | | */ |
574 | 0 | ext = (n * 8 == n8) |
575 | 0 | ? !a->neg /* MSbit set on nonnegative bignum */ |
576 | 0 | : a->neg; /* MSbit unset on negative bignum */ |
577 | 0 | } |
578 | | |
579 | 1.73M | if (tolen == -1) { |
580 | 623k | tolen = n + ext; |
581 | 1.10M | } else if (tolen < n + ext) { /* uncommon/unlike case */ |
582 | 5.30k | BIGNUM temp = *a; |
583 | | |
584 | 5.30k | bn_correct_top(&temp); |
585 | 5.30k | n8 = BN_num_bits(&temp); |
586 | 5.30k | n = (n8 + 7) / 8; /* This is what BN_num_bytes() does */ |
587 | 5.30k | if (tolen < n + ext) |
588 | 5.30k | return -1; |
589 | 5.30k | } |
590 | | |
591 | | /* Swipe through whole available data and don't give away padded zero. */ |
592 | 1.72M | atop = a->dmax * BN_BYTES; |
593 | 1.72M | if (atop == 0) { |
594 | 136k | if (tolen != 0) |
595 | 5.84k | memset(to, '\0', tolen); |
596 | 136k | return tolen; |
597 | 136k | } |
598 | | |
599 | | /* |
600 | | * The loop that does the work iterates from least significant |
601 | | * to most significant BIGNUM limb, so we adapt parameters to |
602 | | * transfer output bytes accordingly. |
603 | | */ |
604 | 1.58M | if (endianness == LITTLE) { |
605 | 963k | inc = 1; |
606 | 963k | } else { |
607 | 626k | inc = -1; |
608 | 626k | to += tolen - 1; /* Move to the last byte, not beyond */ |
609 | 626k | } |
610 | | |
611 | 1.58M | lasti = atop - 1; |
612 | 1.58M | atop = a->top * BN_BYTES; |
613 | 159M | for (i = 0, j = 0; j < (size_t)tolen; j++) { |
614 | 157M | unsigned char byte, byte_xored; |
615 | | |
616 | 157M | l = a->d[i / BN_BYTES]; |
617 | 157M | mask = 0 - ((j - atop) >> (8 * sizeof(i) - 1)); |
618 | 157M | byte = (unsigned char)(l >> (8 * (i % BN_BYTES)) & mask); |
619 | 157M | byte_xored = byte ^ xor; |
620 | 157M | *to = (unsigned char)(byte_xored + carry); |
621 | 157M | carry = byte_xored > *to; /* Implicit 1 or 0 */ |
622 | 157M | to += inc; |
623 | 157M | i += (i - lasti) >> (8 * sizeof(i) - 1); /* stay on last limb */ |
624 | 157M | } |
625 | | |
626 | 1.58M | return tolen; |
627 | 1.72M | } |
628 | | |
629 | | int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen) |
630 | 180k | { |
631 | 180k | if (tolen < 0) |
632 | 0 | return -1; |
633 | 180k | return bn2binpad(a, to, tolen, BIG, UNSIGNED); |
634 | 180k | } |
635 | | |
636 | | int BN_signed_bn2bin(const BIGNUM *a, unsigned char *to, int tolen) |
637 | 0 | { |
638 | 0 | if (tolen < 0) |
639 | 0 | return -1; |
640 | 0 | return bn2binpad(a, to, tolen, BIG, SIGNED); |
641 | 0 | } |
642 | | |
643 | | int BN_bn2bin(const BIGNUM *a, unsigned char *to) |
644 | 720k | { |
645 | 720k | return bn2binpad(a, to, -1, BIG, UNSIGNED); |
646 | 720k | } |
647 | | |
648 | | BIGNUM *BN_lebin2bn(const unsigned char *s, int len, BIGNUM *ret) |
649 | 996k | { |
650 | 996k | return bin2bn(s, len, ret, LITTLE, UNSIGNED); |
651 | 996k | } |
652 | | |
653 | | BIGNUM *BN_signed_lebin2bn(const unsigned char *s, int len, BIGNUM *ret) |
654 | 0 | { |
655 | 0 | return bin2bn(s, len, ret, LITTLE, SIGNED); |
656 | 0 | } |
657 | | |
658 | | int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen) |
659 | 1.06M | { |
660 | 1.06M | if (tolen < 0) |
661 | 0 | return -1; |
662 | 1.06M | return bn2binpad(a, to, tolen, LITTLE, UNSIGNED); |
663 | 1.06M | } |
664 | | |
665 | | int BN_signed_bn2lebin(const BIGNUM *a, unsigned char *to, int tolen) |
666 | 0 | { |
667 | 0 | if (tolen < 0) |
668 | 0 | return -1; |
669 | 0 | return bn2binpad(a, to, tolen, LITTLE, SIGNED); |
670 | 0 | } |
671 | | |
672 | | BIGNUM *BN_native2bn(const unsigned char *s, int len, BIGNUM *ret) |
673 | 1.01M | { |
674 | 1.01M | DECLARE_IS_ENDIAN; |
675 | | |
676 | 1.01M | if (IS_LITTLE_ENDIAN) |
677 | 1.01M | return BN_lebin2bn(s, len, ret); |
678 | 0 | return BN_bin2bn(s, len, ret); |
679 | 1.01M | } |
680 | | |
681 | | BIGNUM *BN_signed_native2bn(const unsigned char *s, int len, BIGNUM *ret) |
682 | 0 | { |
683 | 0 | DECLARE_IS_ENDIAN; |
684 | |
|
685 | 0 | if (IS_LITTLE_ENDIAN) |
686 | 0 | return BN_signed_lebin2bn(s, len, ret); |
687 | 0 | return BN_signed_bin2bn(s, len, ret); |
688 | 0 | } |
689 | | |
690 | | int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen) |
691 | 1.01M | { |
692 | 1.01M | DECLARE_IS_ENDIAN; |
693 | | |
694 | 1.01M | if (IS_LITTLE_ENDIAN) |
695 | 1.01M | return BN_bn2lebinpad(a, to, tolen); |
696 | 0 | return BN_bn2binpad(a, to, tolen); |
697 | 1.01M | } |
698 | | |
699 | | int BN_signed_bn2native(const BIGNUM *a, unsigned char *to, int tolen) |
700 | 0 | { |
701 | 0 | DECLARE_IS_ENDIAN; |
702 | |
|
703 | 0 | if (IS_LITTLE_ENDIAN) |
704 | 0 | return BN_signed_bn2lebin(a, to, tolen); |
705 | 0 | return BN_signed_bn2bin(a, to, tolen); |
706 | 0 | } |
707 | | |
708 | | int BN_ucmp(const BIGNUM *a, const BIGNUM *b) |
709 | 113M | { |
710 | 113M | int i; |
711 | 113M | BN_ULONG t1, t2, *ap, *bp; |
712 | | |
713 | 113M | ap = a->d; |
714 | 113M | bp = b->d; |
715 | | |
716 | 113M | if (BN_get_flags(a, BN_FLG_CONSTTIME) |
717 | 113M | && a->top == b->top) { |
718 | 2.19M | int res = 0; |
719 | | |
720 | 11.3M | for (i = 0; i < b->top; i++) { |
721 | 9.10M | res = constant_time_select_int(constant_time_lt_bn(ap[i], bp[i]), |
722 | 9.10M | -1, res); |
723 | 9.10M | res = constant_time_select_int(constant_time_lt_bn(bp[i], ap[i]), |
724 | 9.10M | 1, res); |
725 | 9.10M | } |
726 | 2.19M | return res; |
727 | 2.19M | } |
728 | | |
729 | 111M | bn_check_top(a); |
730 | 111M | bn_check_top(b); |
731 | | |
732 | 111M | i = a->top - b->top; |
733 | 111M | if (i != 0) |
734 | 13.3M | return i; |
735 | | |
736 | 103M | for (i = a->top - 1; i >= 0; i--) { |
737 | 101M | t1 = ap[i]; |
738 | 101M | t2 = bp[i]; |
739 | 101M | if (t1 != t2) |
740 | 96.3M | return ((t1 > t2) ? 1 : -1); |
741 | 101M | } |
742 | 1.71M | return 0; |
743 | 98.0M | } |
744 | | |
745 | | int BN_cmp(const BIGNUM *a, const BIGNUM *b) |
746 | 16.8M | { |
747 | 16.8M | int i; |
748 | 16.8M | int gt, lt; |
749 | 16.8M | BN_ULONG t1, t2; |
750 | | |
751 | 16.8M | if ((a == NULL) || (b == NULL)) { |
752 | 0 | if (a != NULL) |
753 | 0 | return -1; |
754 | 0 | else if (b != NULL) |
755 | 0 | return 1; |
756 | 0 | else |
757 | 0 | return 0; |
758 | 0 | } |
759 | | |
760 | 16.8M | bn_check_top(a); |
761 | 16.8M | bn_check_top(b); |
762 | | |
763 | 16.8M | if (a->neg != b->neg) { |
764 | 1.09k | if (a->neg) |
765 | 375 | return -1; |
766 | 724 | else |
767 | 724 | return 1; |
768 | 1.09k | } |
769 | 16.8M | if (a->neg == 0) { |
770 | 16.7M | gt = 1; |
771 | 16.7M | lt = -1; |
772 | 16.7M | } else { |
773 | 10.1k | gt = -1; |
774 | 10.1k | lt = 1; |
775 | 10.1k | } |
776 | | |
777 | 16.8M | if (a->top > b->top) |
778 | 2.18M | return gt; |
779 | 14.6M | if (a->top < b->top) |
780 | 1.34M | return lt; |
781 | 37.6M | for (i = a->top - 1; i >= 0; i--) { |
782 | 35.7M | t1 = a->d[i]; |
783 | 35.7M | t2 = b->d[i]; |
784 | 35.7M | if (t1 > t2) |
785 | 4.60M | return gt; |
786 | 31.1M | if (t1 < t2) |
787 | 6.75M | return lt; |
788 | 31.1M | } |
789 | 1.91M | return 0; |
790 | 13.2M | } |
791 | | |
792 | | int BN_set_bit(BIGNUM *a, int n) |
793 | 1.98M | { |
794 | 1.98M | int i, j, k; |
795 | | |
796 | 1.98M | if (n < 0) |
797 | 0 | return 0; |
798 | | |
799 | 1.98M | i = n / BN_BITS2; |
800 | 1.98M | j = n % BN_BITS2; |
801 | 1.98M | if (a->top <= i) { |
802 | 1.98M | if (bn_wexpand(a, i + 1) == NULL) |
803 | 0 | return 0; |
804 | 17.3M | for (k = a->top; k < i + 1; k++) |
805 | 15.3M | a->d[k] = 0; |
806 | 1.98M | a->top = i + 1; |
807 | 1.98M | a->flags &= ~BN_FLG_FIXED_TOP; |
808 | 1.98M | } |
809 | | |
810 | 1.98M | a->d[i] |= (((BN_ULONG)1) << j); |
811 | 1.98M | bn_check_top(a); |
812 | 1.98M | return 1; |
813 | 1.98M | } |
814 | | |
815 | | int BN_clear_bit(BIGNUM *a, int n) |
816 | 120 | { |
817 | 120 | int i, j; |
818 | | |
819 | 120 | bn_check_top(a); |
820 | 120 | if (n < 0) |
821 | 0 | return 0; |
822 | | |
823 | 120 | i = n / BN_BITS2; |
824 | 120 | j = n % BN_BITS2; |
825 | 120 | if (a->top <= i) |
826 | 0 | return 0; |
827 | | |
828 | 120 | a->d[i] &= (~(((BN_ULONG)1) << j)); |
829 | 120 | bn_correct_top(a); |
830 | 120 | return 1; |
831 | 120 | } |
832 | | |
833 | | int BN_is_bit_set(const BIGNUM *a, int n) |
834 | 193M | { |
835 | 193M | int i, j; |
836 | | |
837 | 193M | bn_check_top(a); |
838 | 193M | if (n < 0) |
839 | 4.15k | return 0; |
840 | 193M | i = n / BN_BITS2; |
841 | 193M | j = n % BN_BITS2; |
842 | 193M | if (a->top <= i) |
843 | 9.42k | return 0; |
844 | 193M | return (int)(((a->d[i]) >> j) & ((BN_ULONG)1)); |
845 | 193M | } |
846 | | |
847 | | int ossl_bn_mask_bits_fixed_top(BIGNUM *a, int n) |
848 | 4.41k | { |
849 | 4.41k | int b, w; |
850 | | |
851 | 4.41k | if (n < 0) |
852 | 0 | return 0; |
853 | | |
854 | 4.41k | w = n / BN_BITS2; |
855 | 4.41k | b = n % BN_BITS2; |
856 | 4.41k | if (w >= a->top) |
857 | 0 | return 0; |
858 | 4.41k | if (b == 0) |
859 | 4.41k | a->top = w; |
860 | 0 | else { |
861 | 0 | a->top = w + 1; |
862 | 0 | a->d[w] &= ~(BN_MASK2 << b); |
863 | 0 | } |
864 | 4.41k | a->flags |= BN_FLG_FIXED_TOP; |
865 | 4.41k | return 1; |
866 | 4.41k | } |
867 | | |
868 | | int BN_mask_bits(BIGNUM *a, int n) |
869 | 0 | { |
870 | 0 | int ret; |
871 | |
|
872 | 0 | bn_check_top(a); |
873 | 0 | ret = ossl_bn_mask_bits_fixed_top(a, n); |
874 | 0 | if (ret) |
875 | 0 | bn_correct_top(a); |
876 | 0 | return ret; |
877 | 0 | } |
878 | | |
879 | | void BN_set_negative(BIGNUM *a, int b) |
880 | 2.22M | { |
881 | 2.22M | if (b && !BN_is_zero(a)) |
882 | 848k | a->neg = 1; |
883 | 1.37M | else |
884 | 1.37M | a->neg = 0; |
885 | 2.22M | } |
886 | | |
887 | | int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n) |
888 | 73.2M | { |
889 | 73.2M | int i; |
890 | 73.2M | BN_ULONG aa, bb; |
891 | | |
892 | 73.2M | if (n == 0) |
893 | 0 | return 0; |
894 | | |
895 | 73.2M | aa = a[n - 1]; |
896 | 73.2M | bb = b[n - 1]; |
897 | 73.2M | if (aa != bb) |
898 | 67.6M | return ((aa > bb) ? 1 : -1); |
899 | 49.7M | for (i = n - 2; i >= 0; i--) { |
900 | 47.3M | aa = a[i]; |
901 | 47.3M | bb = b[i]; |
902 | 47.3M | if (aa != bb) |
903 | 3.25M | return ((aa > bb) ? 1 : -1); |
904 | 47.3M | } |
905 | 2.34M | return 0; |
906 | 5.59M | } |
907 | | |
908 | | /* |
909 | | * Here follows a specialised variants of bn_cmp_words(). It has the |
910 | | * capability of performing the operation on arrays of different sizes. The |
911 | | * sizes of those arrays is expressed through cl, which is the common length |
912 | | * ( basically, min(len(a),len(b)) ), and dl, which is the delta between the |
913 | | * two lengths, calculated as len(a)-len(b). All lengths are the number of |
914 | | * BN_ULONGs... |
915 | | */ |
916 | | |
917 | | int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl) |
918 | 92.1M | { |
919 | 92.1M | int n, i; |
920 | 92.1M | n = cl - 1; |
921 | | |
922 | 92.1M | if (dl < 0) { |
923 | 2.62M | for (i = dl; i < 0; i++) { |
924 | 2.56M | if (b[n - i] != 0) |
925 | 1.65M | return -1; /* a < b */ |
926 | 2.56M | } |
927 | 1.71M | } |
928 | 90.4M | if (dl > 0) { |
929 | 4.05M | for (i = dl; i > 0; i--) { |
930 | 3.86M | if (a[n + i] != 0) |
931 | 1.53M | return 1; /* a > b */ |
932 | 3.86M | } |
933 | 1.73M | } |
934 | 88.9M | return bn_cmp_words(a, b, cl); |
935 | 90.4M | } |
936 | | |
937 | | /*- |
938 | | * Constant-time conditional swap of a and b. |
939 | | * a and b are swapped if condition is not 0. |
940 | | * nwords is the number of words to swap. |
941 | | * Assumes that at least nwords are allocated in both a and b. |
942 | | * Assumes that no more than nwords are used by either a or b. |
943 | | */ |
944 | | void BN_consttime_swap(BN_ULONG condition, BIGNUM *a, BIGNUM *b, int nwords) |
945 | 99.7M | { |
946 | 99.7M | BN_ULONG t; |
947 | 99.7M | int i; |
948 | | |
949 | 99.7M | bn_wcheck_size(a, nwords); |
950 | 99.7M | bn_wcheck_size(b, nwords); |
951 | | |
952 | 99.7M | condition = ((~condition & ((condition - 1))) >> (BN_BITS2 - 1)) - 1; |
953 | | |
954 | 99.7M | t = (a->top ^ b->top) & condition; |
955 | 99.7M | a->top ^= t; |
956 | 99.7M | b->top ^= t; |
957 | | |
958 | 99.7M | t = (a->neg ^ b->neg) & condition; |
959 | 99.7M | a->neg ^= t; |
960 | 99.7M | b->neg ^= t; |
961 | | |
962 | | /*- |
963 | | * BN_FLG_STATIC_DATA: indicates that data may not be written to. Intention |
964 | | * is actually to treat it as it's read-only data, and some (if not most) |
965 | | * of it does reside in read-only segment. In other words observation of |
966 | | * BN_FLG_STATIC_DATA in BN_consttime_swap should be treated as fatal |
967 | | * condition. It would either cause SEGV or effectively cause data |
968 | | * corruption. |
969 | | * |
970 | | * BN_FLG_MALLOCED: refers to BN structure itself, and hence must be |
971 | | * preserved. |
972 | | * |
973 | | * BN_FLG_SECURE: must be preserved, because it determines how x->d was |
974 | | * allocated and hence how to free it. |
975 | | * |
976 | | * BN_FLG_CONSTTIME: sufficient to mask and swap |
977 | | * |
978 | | * BN_FLG_FIXED_TOP: indicates that we haven't called bn_correct_top() on |
979 | | * the data, so the d array may be padded with additional 0 values (i.e. |
980 | | * top could be greater than the minimal value that it could be). We should |
981 | | * be swapping it |
982 | | */ |
983 | | |
984 | 99.7M | #define BN_CONSTTIME_SWAP_FLAGS (BN_FLG_CONSTTIME | BN_FLG_FIXED_TOP) |
985 | | |
986 | 99.7M | t = ((a->flags ^ b->flags) & BN_CONSTTIME_SWAP_FLAGS) & condition; |
987 | 99.7M | a->flags ^= t; |
988 | 99.7M | b->flags ^= t; |
989 | | |
990 | | /* conditionally swap the data */ |
991 | 13.8G | for (i = 0; i < nwords; i++) { |
992 | 13.7G | t = (a->d[i] ^ b->d[i]) & condition; |
993 | 13.7G | a->d[i] ^= t; |
994 | 13.7G | b->d[i] ^= t; |
995 | 13.7G | } |
996 | 99.7M | } |
997 | | |
998 | | #undef BN_CONSTTIME_SWAP_FLAGS |
999 | | |
1000 | | /* Bits of security, see SP800-57 */ |
1001 | | |
1002 | | int BN_security_bits(int L, int N) |
1003 | 168k | { |
1004 | 168k | int secbits, bits; |
1005 | 168k | if (L >= 15360) |
1006 | 898 | secbits = 256; |
1007 | 167k | else if (L >= 7680) |
1008 | 1.21k | secbits = 192; |
1009 | 166k | else if (L >= 3072) |
1010 | 2.91k | secbits = 128; |
1011 | 163k | else if (L >= 2048) |
1012 | 4.21k | secbits = 112; |
1013 | 158k | else if (L >= 1024) |
1014 | 108k | secbits = 80; |
1015 | 50.9k | else |
1016 | 50.9k | return 0; |
1017 | 117k | if (N == -1) |
1018 | 11.6k | return secbits; |
1019 | 105k | bits = N / 2; |
1020 | 105k | if (bits < 80) |
1021 | 8.78k | return 0; |
1022 | 96.8k | return bits >= secbits ? secbits : bits; |
1023 | 105k | } |
1024 | | |
1025 | | void BN_zero_ex(BIGNUM *a) |
1026 | 883M | { |
1027 | 883M | a->neg = 0; |
1028 | 883M | a->top = 0; |
1029 | 883M | a->flags &= ~BN_FLG_FIXED_TOP; |
1030 | 883M | } |
1031 | | |
1032 | | int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w) |
1033 | 73.5M | { |
1034 | 73.5M | return ((a->top == 1) && (a->d[0] == w)) || ((w == 0) && (a->top == 0)); |
1035 | 73.5M | } |
1036 | | |
1037 | | int BN_is_zero(const BIGNUM *a) |
1038 | 334M | { |
1039 | 334M | return a->top == 0; |
1040 | 334M | } |
1041 | | |
1042 | | int BN_is_one(const BIGNUM *a) |
1043 | 72.1M | { |
1044 | 72.1M | return BN_abs_is_word(a, 1) && !a->neg; |
1045 | 72.1M | } |
1046 | | |
1047 | | int BN_is_word(const BIGNUM *a, const BN_ULONG w) |
1048 | 341k | { |
1049 | 341k | return BN_abs_is_word(a, w) && (!w || !a->neg); |
1050 | 341k | } |
1051 | | |
1052 | | int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w) |
1053 | 4.41k | { |
1054 | 4.41k | int res, i; |
1055 | 4.41k | const BN_ULONG *ap = a->d; |
1056 | | |
1057 | 4.41k | if (a->neg || a->top == 0) |
1058 | 0 | return 0; |
1059 | | |
1060 | 4.41k | res = constant_time_select_int(constant_time_eq_bn(ap[0], w), 1, 0); |
1061 | | |
1062 | 17.6k | for (i = 1; i < a->top; i++) |
1063 | 13.2k | res = constant_time_select_int(constant_time_is_zero_bn(ap[i]), |
1064 | 13.2k | res, 0); |
1065 | 4.41k | return res; |
1066 | 4.41k | } |
1067 | | |
1068 | | int BN_is_odd(const BIGNUM *a) |
1069 | 56.8M | { |
1070 | 56.8M | return (a->top > 0) && (a->d[0] & 1); |
1071 | 56.8M | } |
1072 | | |
1073 | | int BN_is_negative(const BIGNUM *a) |
1074 | 7.75M | { |
1075 | 7.75M | return (a->neg != 0); |
1076 | 7.75M | } |
1077 | | |
1078 | | int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont, |
1079 | | BN_CTX *ctx) |
1080 | 2.20M | { |
1081 | 2.20M | return BN_mod_mul_montgomery(r, a, &(mont->RR), mont, ctx); |
1082 | 2.20M | } |
1083 | | |
1084 | | void BN_with_flags(BIGNUM *dest, const BIGNUM *b, int flags) |
1085 | 19.6M | { |
1086 | 19.6M | dest->d = b->d; |
1087 | 19.6M | dest->top = b->top; |
1088 | 19.6M | dest->dmax = b->dmax; |
1089 | 19.6M | dest->neg = b->neg; |
1090 | 19.6M | dest->flags = ((dest->flags & BN_FLG_MALLOCED) |
1091 | 19.6M | | (b->flags & ~BN_FLG_MALLOCED) |
1092 | 19.6M | | BN_FLG_STATIC_DATA | flags); |
1093 | 19.6M | } |
1094 | | |
1095 | | BN_GENCB *BN_GENCB_new(void) |
1096 | 5.02k | { |
1097 | 5.02k | BN_GENCB *ret; |
1098 | | |
1099 | 5.02k | if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL) |
1100 | 0 | return NULL; |
1101 | | |
1102 | 5.02k | return ret; |
1103 | 5.02k | } |
1104 | | |
1105 | | void BN_GENCB_free(BN_GENCB *cb) |
1106 | 6.89k | { |
1107 | 6.89k | if (cb == NULL) |
1108 | 1.86k | return; |
1109 | 5.02k | OPENSSL_free(cb); |
1110 | 5.02k | } |
1111 | | |
1112 | | void BN_set_flags(BIGNUM *b, int n) |
1113 | 2.04M | { |
1114 | 2.04M | b->flags |= n; |
1115 | 2.04M | } |
1116 | | |
1117 | | int BN_get_flags(const BIGNUM *b, int n) |
1118 | 520M | { |
1119 | 520M | return b->flags & n; |
1120 | 520M | } |
1121 | | |
1122 | | /* Populate a BN_GENCB structure with an "old"-style callback */ |
1123 | | void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *), |
1124 | | void *cb_arg) |
1125 | 0 | { |
1126 | 0 | BN_GENCB *tmp_gencb = gencb; |
1127 | 0 | tmp_gencb->ver = 1; |
1128 | 0 | tmp_gencb->arg = cb_arg; |
1129 | 0 | tmp_gencb->cb.cb_1 = callback; |
1130 | 0 | } |
1131 | | |
1132 | | /* Populate a BN_GENCB structure with a "new"-style callback */ |
1133 | | void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *), |
1134 | | void *cb_arg) |
1135 | 5.02k | { |
1136 | 5.02k | BN_GENCB *tmp_gencb = gencb; |
1137 | 5.02k | tmp_gencb->ver = 2; |
1138 | 5.02k | tmp_gencb->arg = cb_arg; |
1139 | 5.02k | tmp_gencb->cb.cb_2 = callback; |
1140 | 5.02k | } |
1141 | | |
1142 | | void *BN_GENCB_get_arg(BN_GENCB *cb) |
1143 | 0 | { |
1144 | 0 | return cb->arg; |
1145 | 0 | } |
1146 | | |
1147 | | BIGNUM *bn_wexpand(BIGNUM *a, int words) |
1148 | 1.76G | { |
1149 | 1.76G | return (words <= a->dmax) ? a : bn_expand2(a, words); |
1150 | 1.76G | } |
1151 | | |
1152 | | void bn_correct_top_consttime(BIGNUM *a) |
1153 | 15.7k | { |
1154 | 15.7k | int j, atop; |
1155 | 15.7k | BN_ULONG limb; |
1156 | 15.7k | unsigned int mask; |
1157 | | |
1158 | 1.02M | for (j = 0, atop = 0; j < a->dmax; j++) { |
1159 | 1.00M | limb = a->d[j]; |
1160 | 1.00M | limb |= 0 - limb; |
1161 | 1.00M | limb >>= BN_BITS2 - 1; |
1162 | 1.00M | limb = 0 - limb; |
1163 | 1.00M | mask = (unsigned int)limb; |
1164 | 1.00M | mask &= constant_time_msb(j - a->top); |
1165 | 1.00M | atop = constant_time_select_int(mask, j + 1, atop); |
1166 | 1.00M | } |
1167 | | |
1168 | 15.7k | mask = constant_time_eq_int(atop, 0); |
1169 | 15.7k | a->top = atop; |
1170 | 15.7k | a->neg = constant_time_select_int(mask, 0, a->neg); |
1171 | 15.7k | a->flags &= ~BN_FLG_FIXED_TOP; |
1172 | 15.7k | } |
1173 | | |
1174 | | void bn_correct_top(BIGNUM *a) |
1175 | 792M | { |
1176 | 792M | BN_ULONG *ftl; |
1177 | 792M | int tmp_top = a->top; |
1178 | | |
1179 | 792M | if (tmp_top > 0) { |
1180 | 2.17G | for (ftl = &(a->d[tmp_top]); tmp_top > 0; tmp_top--) { |
1181 | 2.16G | ftl--; |
1182 | 2.16G | if (*ftl != 0) |
1183 | 789M | break; |
1184 | 2.16G | } |
1185 | 791M | a->top = tmp_top; |
1186 | 791M | } |
1187 | 792M | if (a->top == 0) |
1188 | 3.14M | a->neg = 0; |
1189 | 792M | a->flags &= ~BN_FLG_FIXED_TOP; |
1190 | 792M | bn_pollute(a); |
1191 | 792M | } |