This commit was generated by cvs2svn to track changes on a CVS vendor
[openssl.git] / crypto / bn / bn_lcl.h
1 /* crypto/bn/bn_lcl.h */
2 /* Copyright (C) 1995-1997 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 #ifndef HEADER_BN_LCL_H
60 #define HEADER_BN_LCL_H
61
62 #include "bn.h"
63
64 #ifdef  __cplusplus
65 extern "C" {
66 #endif
67
68 /*************************************************************
69  * Using the long long type
70  */
71 #define Lw(t)    (((BN_ULONG)(t))&BN_MASK2)
72 #define Hw(t)    (((BN_ULONG)((t)>>BN_BITS2))&BN_MASK2)
73
74 #define bn_fix_top(a) \
75         { \
76         BN_ULONG *fix_top_l; \
77         for (fix_top_l= &((a)->d[(a)->top-1]); (a)->top > 0; (a)->top--) \
78                 if (*(fix_top_l--)) break; \
79         }
80
81 #define bn_expand(n,b) ((((b)/BN_BITS2) <= (n)->max)?(n):bn_expand2((n),(b)))
82
83 #ifdef BN_LLONG
84 #define mul_add(r,a,w,c) { \
85         BN_ULLONG t; \
86         t=(BN_ULLONG)w * (a) + (r) + (c); \
87         (r)=Lw(t); \
88         (c)= Hw(t); \
89         }
90
91 #define mul(r,a,w,c) { \
92         BN_ULLONG t; \
93         t=(BN_ULLONG)w * (a) + (c); \
94         (r)=Lw(t); \
95         (c)= Hw(t); \
96         }
97
98 #define bn_mul_words(r1,r2,a,b) \
99         { \
100         BN_ULLONG t; \
101         t=(BN_ULLONG)(a)*(b); \
102         r1=Lw(t); \
103         r2=Hw(t); \
104         }
105
106 #else
107 /*************************************************************
108  * No long long type
109  */
110
111 #define LBITS(a)        ((a)&BN_MASK2l)
112 #define HBITS(a)        (((a)>>BN_BITS4)&BN_MASK2l)
113 #define L2HBITS(a)      ((BN_ULONG)((a)&BN_MASK2l)<<BN_BITS4)
114
115 #define LLBITS(a)       ((a)&BN_MASKl)
116 #define LHBITS(a)       (((a)>>BN_BITS2)&BN_MASKl)
117 #define LL2HBITS(a)     ((BN_ULLONG)((a)&BN_MASKl)<<BN_BITS2)
118
119 #define mul64(l,h,bl,bh) \
120         { \
121         BN_ULONG m,m1,lt,ht; \
122  \
123         lt=l; \
124         ht=h; \
125         m =(bh)*(lt); \
126         lt=(bl)*(lt); \
127         m1=(bl)*(ht); \
128         ht =(bh)*(ht); \
129         m+=m1; if ((m&BN_MASK2) < m1) ht+=L2HBITS(1L); \
130         ht+=HBITS(m); \
131         m1=L2HBITS(m); \
132         lt+=m1; if ((lt&BN_MASK2) < m1) ht++; \
133         (l)=lt; \
134         (h)=ht; \
135         }
136
137 #define sqr64(lo,ho,in) \
138         { \
139         BN_ULONG l,h,m; \
140  \
141         h=(in); \
142         l=LBITS(h); \
143         h=HBITS(h); \
144         m =(l)*(h); \
145         l*=l; \
146         h*=h; \
147         h+=(m&BN_MASK2h1)>>(BN_BITS4-1); \
148         m =(m&BN_MASK2l)<<(BN_BITS4+1); \
149         l+=m; if ((l&BN_MASK2) < m) h++; \
150         (lo)=l; \
151         (ho)=h; \
152         }
153
154 #define mul_add(r,a,bl,bh,c) { \
155         BN_ULONG l,h; \
156  \
157         h= (a); \
158         l=LBITS(h); \
159         h=HBITS(h); \
160         mul64(l,h,(bl),(bh)); \
161  \
162         /* non-multiply part */ \
163         l+=(c); if ((l&BN_MASK2) < (c)) h++; \
164         (c)=(r); \
165         l+=(c); if ((l&BN_MASK2) < (c)) h++; \
166         (c)=h&BN_MASK2; \
167         (r)=l&BN_MASK2; \
168         }
169
170 #define mul(r,a,bl,bh,c) { \
171         BN_ULONG l,h; \
172  \
173         h= (a); \
174         l=LBITS(h); \
175         h=HBITS(h); \
176         mul64(l,h,(bl),(bh)); \
177  \
178         /* non-multiply part */ \
179         l+=(c); if ((l&BN_MASK2) < (c)) h++; \
180         (c)=h&BN_MASK2; \
181         (r)=l&BN_MASK2; \
182         }
183
184 #define bn_mul_words(r1,r2,a,b) \
185         { \
186         BN_ULONG l,h,bl,bh; \
187  \
188         h=(a); \
189         l=LBITS(h); \
190         h=HBITS(h); \
191         bh=(b); \
192         bl=LBITS(bh); \
193         bh=HBITS(bh); \
194  \
195         mul64(l,h,bl,bh); \
196  \
197         (r1)=l; \
198         (r2)=h; \
199         }
200 #endif
201
202 #ifndef NOPROTO
203
204 BIGNUM *bn_expand2(BIGNUM *b, int bits);
205
206 #else
207
208 BIGNUM *bn_expand2();
209
210 #endif
211
212 #ifdef  __cplusplus
213 }
214 #endif
215
216 #endif