c072ee750de770bbe9f0eb5bf52a89aa13cfe442
[openssl.git] / crypto / bn / bn_lcl.h
1 /* crypto/bn/bn_lcl.h */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2000 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer. 
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112 #ifndef HEADER_BN_LCL_H
113 #define HEADER_BN_LCL_H
114
115 #include "internal/bn_int.h"
116
117 #ifdef  __cplusplus
118 extern "C" {
119 #endif
120
121 /* Bignum consistency macros
122  * There is one "API" macro, bn_fix_top(), for stripping leading zeroes from
123  * bignum data after direct manipulations on the data. There is also an
124  * "internal" macro, bn_check_top(), for verifying that there are no leading
125  * zeroes. Unfortunately, some auditing is required due to the fact that
126  * bn_fix_top() has become an overabused duct-tape because bignum data is
127  * occasionally passed around in an inconsistent state. So the following
128  * changes have been made to sort this out;
129  * - bn_fix_top()s implementation has been moved to bn_correct_top()
130  * - if BN_DEBUG isn't defined, bn_fix_top() maps to bn_correct_top(), and
131  *   bn_check_top() is as before.
132  * - if BN_DEBUG *is* defined;
133  *   - bn_check_top() tries to pollute unused words even if the bignum 'top' is
134  *     consistent. (ed: only if BN_DEBUG_RAND is defined)
135  *   - bn_fix_top() maps to bn_check_top() rather than "fixing" anything.
136  * The idea is to have debug builds flag up inconsistent bignums when they
137  * occur. If that occurs in a bn_fix_top(), we examine the code in question; if
138  * the use of bn_fix_top() was appropriate (ie. it follows directly after code
139  * that manipulates the bignum) it is converted to bn_correct_top(), and if it
140  * was not appropriate, we convert it permanently to bn_check_top() and track
141  * down the cause of the bug. Eventually, no internal code should be using the
142  * bn_fix_top() macro. External applications and libraries should try this with
143  * their own code too, both in terms of building against the openssl headers
144  * with BN_DEBUG defined *and* linking with a version of OpenSSL built with it
145  * defined. This not only improves external code, it provides more test
146  * coverage for openssl's own code.
147  */
148
149 #ifdef BN_DEBUG
150
151 /* We only need assert() when debugging */
152 #include <assert.h>
153
154 #ifdef BN_DEBUG_RAND
155 /* To avoid "make update" cvs wars due to BN_DEBUG, use some tricks */
156 #ifndef RAND_pseudo_bytes
157 int RAND_pseudo_bytes(unsigned char *buf,int num);
158 #define BN_DEBUG_TRIX
159 #endif
160 #define bn_pollute(a) \
161         do { \
162                 const BIGNUM *_bnum1 = (a); \
163                 if(_bnum1->top < _bnum1->dmax) { \
164                         unsigned char _tmp_char; \
165                         /* We cast away const without the compiler knowing, any \
166                          * *genuinely* constant variables that aren't mutable \
167                          * wouldn't be constructed with top!=dmax. */ \
168                         BN_ULONG *_not_const; \
169                         memcpy(&_not_const, &_bnum1->d, sizeof(BN_ULONG*)); \
170                         RAND_pseudo_bytes(&_tmp_char, 1); \
171                         memset((unsigned char *)(_not_const + _bnum1->top), _tmp_char, \
172                                 (_bnum1->dmax - _bnum1->top) * sizeof(BN_ULONG)); \
173                 } \
174         } while(0)
175 #ifdef BN_DEBUG_TRIX
176 #undef RAND_pseudo_bytes
177 #endif
178 #else
179 #define bn_pollute(a)
180 #endif
181 #define bn_check_top(a) \
182         do { \
183                 const BIGNUM *_bnum2 = (a); \
184                 if (_bnum2 != NULL) { \
185                         assert((_bnum2->top == 0) || \
186                                 (_bnum2->d[_bnum2->top - 1] != 0)); \
187                         bn_pollute(_bnum2); \
188                 } \
189         } while(0)
190
191 #define bn_fix_top(a)           bn_check_top(a)
192
193 #define bn_check_size(bn, bits) bn_wcheck_size(bn, ((bits+BN_BITS2-1))/BN_BITS2)
194 #define bn_wcheck_size(bn, words) \
195         do { \
196                 const BIGNUM *_bnum2 = (bn); \
197                 assert(words <= (_bnum2)->dmax && words >= (_bnum2)->top); \
198         } while(0)
199
200 #else /* !BN_DEBUG */
201
202 #define bn_pollute(a)
203 #define bn_check_top(a)
204 #define bn_fix_top(a)           bn_correct_top(a)
205 #define bn_check_size(bn, bits)
206 #define bn_wcheck_size(bn, words)
207
208 #endif
209
210
211 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w);
212 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w);
213 void     bn_sqr_words(BN_ULONG *rp, const BN_ULONG *ap, int num);
214 BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d);
215 BN_ULONG bn_add_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int num);
216 BN_ULONG bn_sub_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int num);
217
218
219 struct bignum_st
220         {
221         BN_ULONG *d;    /* Pointer to an array of 'BN_BITS2' bit chunks. */
222         int top;        /* Index of last used d +1. */
223         /* The next are internal book keeping for bn_expand. */
224         int dmax;       /* Size of the d array. */
225         int neg;        /* one if the number is negative */
226         int flags;
227         };
228
229 /* Used for montgomery multiplication */
230 struct bn_mont_ctx_st
231         {
232         int ri;        /* number of bits in R */
233         BIGNUM RR;     /* used to convert to montgomery form */
234         BIGNUM N;      /* The modulus */
235         BIGNUM Ni;     /* R*(1/R mod N) - N*Ni = 1
236                         * (Ni is only stored for bignum algorithm) */
237         BN_ULONG n0[2];/* least significant word(s) of Ni;
238                           (type changed with 0.9.9, was "BN_ULONG n0;" before) */
239         int flags;
240         };
241
242 /* Used for reciprocal division/mod functions
243  * It cannot be shared between threads
244  */
245 struct bn_recp_ctx_st
246         {
247         BIGNUM N;       /* the divisor */
248         BIGNUM Nr;      /* the reciprocal */
249         int num_bits;
250         int shift;
251         int flags;
252         };
253
254 /* Used for slow "generation" functions. */
255 struct bn_gencb_st
256         {
257         unsigned int ver;       /* To handle binary (in)compatibility */
258         void *arg;              /* callback-specific data */
259         union
260                 {
261                 /* if(ver==1) - handles old style callbacks */
262                 void (*cb_1)(int, int, void *);
263                 /* if(ver==2) - new callback style */
264                 int (*cb_2)(int, int, BN_GENCB *);
265                 } cb;
266         };
267
268
269 /*
270  * BN_window_bits_for_exponent_size -- macro for sliding window mod_exp functions
271  *
272  *
273  * For window size 'w' (w >= 2) and a random 'b' bits exponent,
274  * the number of multiplications is a constant plus on average
275  *
276  *    2^(w-1) + (b-w)/(w+1);
277  *
278  * here  2^(w-1)  is for precomputing the table (we actually need
279  * entries only for windows that have the lowest bit set), and
280  * (b-w)/(w+1)  is an approximation for the expected number of
281  * w-bit windows, not counting the first one.
282  *
283  * Thus we should use
284  *
285  *    w >= 6  if        b > 671
286  *     w = 5  if  671 > b > 239
287  *     w = 4  if  239 > b >  79
288  *     w = 3  if   79 > b >  23
289  *    w <= 2  if   23 > b
290  *
291  * (with draws in between).  Very small exponents are often selected
292  * with low Hamming weight, so we use  w = 1  for b <= 23.
293  */
294 #if 1
295 #define BN_window_bits_for_exponent_size(b) \
296                 ((b) > 671 ? 6 : \
297                  (b) > 239 ? 5 : \
298                  (b) >  79 ? 4 : \
299                  (b) >  23 ? 3 : 1)
300 #else
301 /* Old SSLeay/OpenSSL table.
302  * Maximum window size was 5, so this table differs for b==1024;
303  * but it coincides for other interesting values (b==160, b==512).
304  */
305 #define BN_window_bits_for_exponent_size(b) \
306                 ((b) > 255 ? 5 : \
307                  (b) > 127 ? 4 : \
308                  (b) >  17 ? 3 : 1)
309 #endif   
310
311
312
313 /* BN_mod_exp_mont_conttime is based on the assumption that the
314  * L1 data cache line width of the target processor is at least
315  * the following value.
316  */
317 #define MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH      ( 64 )
318 #define MOD_EXP_CTIME_MIN_CACHE_LINE_MASK       (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - 1)
319
320 /* Window sizes optimized for fixed window size modular exponentiation
321  * algorithm (BN_mod_exp_mont_consttime).
322  *
323  * To achieve the security goals of BN_mode_exp_mont_consttime, the
324  * maximum size of the window must not exceed
325  * log_2(MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH). 
326  *
327  * Window size thresholds are defined for cache line sizes of 32 and 64,
328  * cache line sizes where log_2(32)=5 and log_2(64)=6 respectively. A
329  * window size of 7 should only be used on processors that have a 128
330  * byte or greater cache line size.
331  */
332 #if MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH == 64
333
334 #  define BN_window_bits_for_ctime_exponent_size(b) \
335                 ((b) > 937 ? 6 : \
336                  (b) > 306 ? 5 : \
337                  (b) >  89 ? 4 : \
338                  (b) >  22 ? 3 : 1)
339 #  define BN_MAX_WINDOW_BITS_FOR_CTIME_EXPONENT_SIZE    (6)
340
341 #elif MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH == 32
342
343 #  define BN_window_bits_for_ctime_exponent_size(b) \
344                 ((b) > 306 ? 5 : \
345                  (b) >  89 ? 4 : \
346                  (b) >  22 ? 3 : 1)
347 #  define BN_MAX_WINDOW_BITS_FOR_CTIME_EXPONENT_SIZE    (5)
348
349 #endif
350
351
352 /* Pentium pro 16,16,16,32,64 */
353 /* Alpha       16,16,16,16.64 */
354 #define BN_MULL_SIZE_NORMAL                     (16) /* 32 */
355 #define BN_MUL_RECURSIVE_SIZE_NORMAL            (16) /* 32 less than */
356 #define BN_SQR_RECURSIVE_SIZE_NORMAL            (16) /* 32 */
357 #define BN_MUL_LOW_RECURSIVE_SIZE_NORMAL        (32) /* 32 */
358 #define BN_MONT_CTX_SET_SIZE_WORD               (64) /* 32 */
359
360 /* 2011-02-22 SMS.
361  * In various places, a size_t variable or a type cast to size_t was
362  * used to perform integer-only operations on pointers.  This failed on
363  * VMS with 64-bit pointers (CC /POINTER_SIZE = 64) because size_t is
364  * still only 32 bits.  What's needed in these cases is an integer type
365  * with the same size as a pointer, which size_t is not certain to be.
366  * The only fix here is VMS-specific.
367  */
368 #if defined(OPENSSL_SYS_VMS)
369 # if __INITIAL_POINTER_SIZE == 64
370 #  define PTR_SIZE_INT long long
371 # else /* __INITIAL_POINTER_SIZE == 64 */
372 #  define PTR_SIZE_INT int
373 # endif /* __INITIAL_POINTER_SIZE == 64 [else] */
374 #elif !defined(PTR_SIZE_INT) /* defined(OPENSSL_SYS_VMS) */
375 # define PTR_SIZE_INT size_t
376 #endif /* defined(OPENSSL_SYS_VMS) [else] */
377
378 #if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) && !defined(PEDANTIC)
379 /*
380  * BN_UMULT_HIGH section.
381  *
382  * No, I'm not trying to overwhelm you when stating that the
383  * product of N-bit numbers is 2*N bits wide:-) No, I don't expect
384  * you to be impressed when I say that if the compiler doesn't
385  * support 2*N integer type, then you have to replace every N*N
386  * multiplication with 4 (N/2)*(N/2) accompanied by some shifts
387  * and additions which unavoidably results in severe performance
388  * penalties. Of course provided that the hardware is capable of
389  * producing 2*N result... That's when you normally start
390  * considering assembler implementation. However! It should be
391  * pointed out that some CPUs (most notably Alpha, PowerPC and
392  * upcoming IA-64 family:-) provide *separate* instruction
393  * calculating the upper half of the product placing the result
394  * into a general purpose register. Now *if* the compiler supports
395  * inline assembler, then it's not impossible to implement the
396  * "bignum" routines (and have the compiler optimize 'em)
397  * exhibiting "native" performance in C. That's what BN_UMULT_HIGH
398  * macro is about:-)
399  *
400  *                                      <appro@fy.chalmers.se>
401  */
402 # if defined(__alpha) && (defined(SIXTY_FOUR_BIT_LONG) || defined(SIXTY_FOUR_BIT))
403 #  if defined(__DECC)
404 #   include <c_asm.h>
405 #   define BN_UMULT_HIGH(a,b)   (BN_ULONG)asm("umulh %a0,%a1,%v0",(a),(b))
406 #  elif defined(__GNUC__) && __GNUC__>=2
407 #   define BN_UMULT_HIGH(a,b)   ({      \
408         register BN_ULONG ret;          \
409         asm ("umulh     %1,%2,%0"       \
410              : "=r"(ret)                \
411              : "r"(a), "r"(b));         \
412         ret;                    })
413 #  endif        /* compiler */
414 # elif defined(_ARCH_PPC) && defined(__64BIT__) && defined(SIXTY_FOUR_BIT_LONG)
415 #  if defined(__GNUC__) && __GNUC__>=2
416 #   define BN_UMULT_HIGH(a,b)   ({      \
417         register BN_ULONG ret;          \
418         asm ("mulhdu    %0,%1,%2"       \
419              : "=r"(ret)                \
420              : "r"(a), "r"(b));         \
421         ret;                    })
422 #  endif        /* compiler */
423 # elif (defined(__x86_64) || defined(__x86_64__)) && \
424        (defined(SIXTY_FOUR_BIT_LONG) || defined(SIXTY_FOUR_BIT))
425 #  if defined(__GNUC__) && __GNUC__>=2
426 #   define BN_UMULT_HIGH(a,b)   ({      \
427         register BN_ULONG ret,discard;  \
428         asm ("mulq      %3"             \
429              : "=a"(discard),"=d"(ret)  \
430              : "a"(a), "g"(b)           \
431              : "cc");                   \
432         ret;                    })
433 #   define BN_UMULT_LOHI(low,high,a,b)  \
434         asm ("mulq      %3"             \
435                 : "=a"(low),"=d"(high)  \
436                 : "a"(a),"g"(b)         \
437                 : "cc");
438 #  endif
439 # elif (defined(_M_AMD64) || defined(_M_X64)) && defined(SIXTY_FOUR_BIT)
440 #  if defined(_MSC_VER) && _MSC_VER>=1400
441     unsigned __int64 __umulh    (unsigned __int64 a,unsigned __int64 b);
442     unsigned __int64 _umul128   (unsigned __int64 a,unsigned __int64 b,
443                                  unsigned __int64 *h);
444 #   pragma intrinsic(__umulh,_umul128)
445 #   define BN_UMULT_HIGH(a,b)           __umulh((a),(b))
446 #   define BN_UMULT_LOHI(low,high,a,b)  ((low)=_umul128((a),(b),&(high)))
447 #  endif
448 # elif defined(__mips) && (defined(SIXTY_FOUR_BIT) || defined(SIXTY_FOUR_BIT_LONG))
449 #  if defined(__GNUC__) && __GNUC__>=2
450 #   if __GNUC__>=4 && __GNUC_MINOR__>=4 /* "h" constraint is no more since 4.4 */
451 #     define BN_UMULT_HIGH(a,b)          (((__uint128_t)(a)*(b))>>64)
452 #     define BN_UMULT_LOHI(low,high,a,b) ({     \
453         __uint128_t ret=(__uint128_t)(a)*(b);   \
454         (high)=ret>>64; (low)=ret;       })
455 #   else
456 #     define BN_UMULT_HIGH(a,b) ({      \
457         register BN_ULONG ret;          \
458         asm ("dmultu    %1,%2"          \
459              : "=h"(ret)                \
460              : "r"(a), "r"(b) : "l");   \
461         ret;                    })
462 #     define BN_UMULT_LOHI(low,high,a,b)\
463         asm ("dmultu    %2,%3"          \
464              : "=l"(low),"=h"(high)     \
465              : "r"(a), "r"(b));
466 #    endif
467 #  endif
468 # elif defined(__aarch64__) && defined(SIXTY_FOUR_BIT_LONG)
469 #  if defined(__GNUC__) && __GNUC__>=2
470 #   define BN_UMULT_HIGH(a,b)   ({      \
471         register BN_ULONG ret;          \
472         asm ("umulh     %0,%1,%2"       \
473              : "=r"(ret)                \
474              : "r"(a), "r"(b));         \
475         ret;                    })
476 #  endif
477 # endif         /* cpu */
478 #endif          /* OPENSSL_NO_ASM */
479
480 /*************************************************************
481  * Using the long long type
482  */
483 #define Lw(t)    (((BN_ULONG)(t))&BN_MASK2)
484 #define Hw(t)    (((BN_ULONG)((t)>>BN_BITS2))&BN_MASK2)
485
486 #ifdef BN_DEBUG_RAND
487 #define bn_clear_top2max(a) \
488         { \
489         int      ind = (a)->dmax - (a)->top; \
490         BN_ULONG *ftl = &(a)->d[(a)->top-1]; \
491         for (; ind != 0; ind--) \
492                 *(++ftl) = 0x0; \
493         }
494 #else
495 #define bn_clear_top2max(a)
496 #endif
497
498 #ifdef BN_LLONG
499 #define mul_add(r,a,w,c) { \
500         BN_ULLONG t; \
501         t=(BN_ULLONG)w * (a) + (r) + (c); \
502         (r)= Lw(t); \
503         (c)= Hw(t); \
504         }
505
506 #define mul(r,a,w,c) { \
507         BN_ULLONG t; \
508         t=(BN_ULLONG)w * (a) + (c); \
509         (r)= Lw(t); \
510         (c)= Hw(t); \
511         }
512
513 #define sqr(r0,r1,a) { \
514         BN_ULLONG t; \
515         t=(BN_ULLONG)(a)*(a); \
516         (r0)=Lw(t); \
517         (r1)=Hw(t); \
518         }
519
520 #elif defined(BN_UMULT_LOHI)
521 #define mul_add(r,a,w,c) {              \
522         BN_ULONG high,low,ret,tmp=(a);  \
523         ret =  (r);                     \
524         BN_UMULT_LOHI(low,high,w,tmp);  \
525         ret += (c);                     \
526         (c) =  (ret<(c))?1:0;           \
527         (c) += high;                    \
528         ret += low;                     \
529         (c) += (ret<low)?1:0;           \
530         (r) =  ret;                     \
531         }
532
533 #define mul(r,a,w,c)    {               \
534         BN_ULONG high,low,ret,ta=(a);   \
535         BN_UMULT_LOHI(low,high,w,ta);   \
536         ret =  low + (c);               \
537         (c) =  high;                    \
538         (c) += (ret<low)?1:0;           \
539         (r) =  ret;                     \
540         }
541
542 #define sqr(r0,r1,a)    {               \
543         BN_ULONG tmp=(a);               \
544         BN_UMULT_LOHI(r0,r1,tmp,tmp);   \
545         }
546
547 #elif defined(BN_UMULT_HIGH)
548 #define mul_add(r,a,w,c) {              \
549         BN_ULONG high,low,ret,tmp=(a);  \
550         ret =  (r);                     \
551         high=  BN_UMULT_HIGH(w,tmp);    \
552         ret += (c);                     \
553         low =  (w) * tmp;               \
554         (c) =  (ret<(c))?1:0;           \
555         (c) += high;                    \
556         ret += low;                     \
557         (c) += (ret<low)?1:0;           \
558         (r) =  ret;                     \
559         }
560
561 #define mul(r,a,w,c)    {               \
562         BN_ULONG high,low,ret,ta=(a);   \
563         low =  (w) * ta;                \
564         high=  BN_UMULT_HIGH(w,ta);     \
565         ret =  low + (c);               \
566         (c) =  high;                    \
567         (c) += (ret<low)?1:0;           \
568         (r) =  ret;                     \
569         }
570
571 #define sqr(r0,r1,a)    {               \
572         BN_ULONG tmp=(a);               \
573         (r0) = tmp * tmp;               \
574         (r1) = BN_UMULT_HIGH(tmp,tmp);  \
575         }
576
577 #else
578 /*************************************************************
579  * No long long type
580  */
581
582 #define LBITS(a)        ((a)&BN_MASK2l)
583 #define HBITS(a)        (((a)>>BN_BITS4)&BN_MASK2l)
584 #define L2HBITS(a)      (((a)<<BN_BITS4)&BN_MASK2)
585
586 #define LLBITS(a)       ((a)&BN_MASKl)
587 #define LHBITS(a)       (((a)>>BN_BITS2)&BN_MASKl)
588 #define LL2HBITS(a)     ((BN_ULLONG)((a)&BN_MASKl)<<BN_BITS2)
589
590 #define mul64(l,h,bl,bh) \
591         { \
592         BN_ULONG m,m1,lt,ht; \
593  \
594         lt=l; \
595         ht=h; \
596         m =(bh)*(lt); \
597         lt=(bl)*(lt); \
598         m1=(bl)*(ht); \
599         ht =(bh)*(ht); \
600         m=(m+m1)&BN_MASK2; if (m < m1) ht+=L2HBITS((BN_ULONG)1); \
601         ht+=HBITS(m); \
602         m1=L2HBITS(m); \
603         lt=(lt+m1)&BN_MASK2; if (lt < m1) ht++; \
604         (l)=lt; \
605         (h)=ht; \
606         }
607
608 #define sqr64(lo,ho,in) \
609         { \
610         BN_ULONG l,h,m; \
611  \
612         h=(in); \
613         l=LBITS(h); \
614         h=HBITS(h); \
615         m =(l)*(h); \
616         l*=l; \
617         h*=h; \
618         h+=(m&BN_MASK2h1)>>(BN_BITS4-1); \
619         m =(m&BN_MASK2l)<<(BN_BITS4+1); \
620         l=(l+m)&BN_MASK2; if (l < m) h++; \
621         (lo)=l; \
622         (ho)=h; \
623         }
624
625 #define mul_add(r,a,bl,bh,c) { \
626         BN_ULONG l,h; \
627  \
628         h= (a); \
629         l=LBITS(h); \
630         h=HBITS(h); \
631         mul64(l,h,(bl),(bh)); \
632  \
633         /* non-multiply part */ \
634         l=(l+(c))&BN_MASK2; if (l < (c)) h++; \
635         (c)=(r); \
636         l=(l+(c))&BN_MASK2; if (l < (c)) h++; \
637         (c)=h&BN_MASK2; \
638         (r)=l; \
639         }
640
641 #define mul(r,a,bl,bh,c) { \
642         BN_ULONG l,h; \
643  \
644         h= (a); \
645         l=LBITS(h); \
646         h=HBITS(h); \
647         mul64(l,h,(bl),(bh)); \
648  \
649         /* non-multiply part */ \
650         l+=(c); if ((l&BN_MASK2) < (c)) h++; \
651         (c)=h&BN_MASK2; \
652         (r)=l&BN_MASK2; \
653         }
654 #endif /* !BN_LLONG */
655
656 void BN_init(BIGNUM *a);
657 void BN_RECP_CTX_init(BN_RECP_CTX *recp);
658 void BN_MONT_CTX_init(BN_MONT_CTX *ctx);
659
660 void bn_mul_normal(BN_ULONG *r,BN_ULONG *a,int na,BN_ULONG *b,int nb);
661 void bn_mul_comba8(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b);
662 void bn_mul_comba4(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b);
663 void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp);
664 void bn_sqr_comba8(BN_ULONG *r,const BN_ULONG *a);
665 void bn_sqr_comba4(BN_ULONG *r,const BN_ULONG *a);
666 int bn_cmp_words(const BN_ULONG *a,const BN_ULONG *b,int n);
667 int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b,
668         int cl, int dl);
669 void bn_mul_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
670         int dna,int dnb,BN_ULONG *t);
671 void bn_mul_part_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,
672         int n,int tna,int tnb,BN_ULONG *t);
673 void bn_sqr_recursive(BN_ULONG *r,const BN_ULONG *a, int n2, BN_ULONG *t);
674 void bn_mul_low_normal(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b, int n);
675 void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
676         BN_ULONG *t);
677 void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2,
678         BN_ULONG *t);
679 BN_ULONG bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
680         int cl, int dl);
681 BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
682         int cl, int dl);
683 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num);
684
685 BIGNUM *int_bn_mod_inverse(BIGNUM *in,
686         const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx, int *noinv);
687
688 int bn_probable_prime_dh(BIGNUM *rnd, int bits,
689         const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
690 int bn_probable_prime_dh_retry(BIGNUM *rnd, int bits, BN_CTX *ctx);
691 int bn_probable_prime_dh_coprime(BIGNUM *rnd, int bits, BN_CTX *ctx);
692
693 #ifdef  __cplusplus
694 }
695 #endif
696
697 #endif