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