4 //FIXME Not checked on threadsafety yet; after checking please remove this line
5 /* crypto/bn/bn_sqr.c */
6 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
9 * This package is an SSL implementation written
10 * by Eric Young (eay@cryptsoft.com).
11 * The implementation was written so as to conform with Netscapes SSL.
13 * This library is free for commercial and non-commercial use as long as
14 * the following conditions are aheared to. The following conditions
15 * apply to all code found in this distribution, be it the RC4, RSA,
16 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
17 * included with this distribution is covered by the same copyright terms
18 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
20 * Copyright remains Eric Young's, and as such any Copyright notices in
21 * the code are not to be removed.
22 * If this package is used in a product, Eric Young should be given attribution
23 * as the author of the parts of the library used.
24 * This can be in the form of a textual message at program startup or
25 * in documentation (online or textual) provided with the package.
27 * Redistribution and use in source and binary forms, with or without
28 * modification, are permitted provided that the following conditions
30 * 1. Redistributions of source code must retain the copyright
31 * notice, this list of conditions and the following disclaimer.
32 * 2. Redistributions in binary form must reproduce the above copyright
33 * notice, this list of conditions and the following disclaimer in the
34 * documentation and/or other materials provided with the distribution.
35 * 3. All advertising materials mentioning features or use of this software
36 * must display the following acknowledgement:
37 * "This product includes cryptographic software written by
38 * Eric Young (eay@cryptsoft.com)"
39 * The word 'cryptographic' can be left out if the rouines from the library
40 * being used are not cryptographic related :-).
41 * 4. If you include any Windows specific code (or a derivative thereof) from
42 * the apps directory (application code) you must include an acknowledgement:
43 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
45 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
57 * The license and distribution terms for any publically available version or
58 * derivative of this code cannot be changed. i.e. this code cannot simply be
59 * copied and put under another distribution license
60 * [including the GNU Public License.]
66 #include "openssl_mods.h"
69 /* I've just gone over this and it is now %20 faster on x86 - eay - 27 Jun 96 */
70 int BN_sqr(BIGNUM
*r
, BIGNUM
*a
, BN_CTX
*ctx
)
77 printf("BN_sqr %d * %d\n", a
->top
, a
->top
);
89 rr
= (a
!= r
) ? r
: BN_CTX_get(ctx
);
90 tmp
= BN_CTX_get(ctx
);
91 if(tmp
== NULL
) { goto err
; }
94 if(bn_wexpand(rr
, max
+ 1) == NULL
) { goto err
; }
101 bn_sqr_normal(rr
->d
, a
->d
, 4, t
);
103 bn_sqr_comba4(rr
->d
, a
->d
);
110 bn_sqr_normal(rr
->d
, a
->d
, 8, t
);
112 bn_sqr_comba8(rr
->d
, a
->d
);
117 #if defined(BN_RECURSION)
118 if(al
< BN_SQR_RECURSIVE_SIZE_NORMAL
)
120 BN_ULONG t
[BN_SQR_RECURSIVE_SIZE_NORMAL
* 2];
121 bn_sqr_normal(rr
->d
, a
->d
, al
, t
);
127 j
= BN_num_bits_word((BN_ULONG
)al
);
132 if(bn_wexpand(a
, k
* 2) == NULL
) { goto err
; }
133 if(bn_wexpand(tmp
, k
* 2) == NULL
) { goto err
; }
134 bn_sqr_recursive(rr
->d
, a
->d
, al
, tmp
->d
);
138 if(bn_wexpand(tmp
, max
) == NULL
) { goto err
; }
139 bn_sqr_normal(rr
->d
, a
->d
, al
, tmp
->d
);
143 if(bn_wexpand(tmp
, max
) == NULL
) { goto err
; }
144 bn_sqr_normal(rr
->d
, a
->d
, al
, tmp
->d
);
149 if((max
> 0) && (rr
->d
[max
- 1] == 0)) { rr
->top
--; }
150 if(rr
!= r
) { BN_copy(r
, rr
); }
157 /* tmp must have 2*n words */
158 void bn_sqr_normal(BN_ULONG
*r
, BN_ULONG
*a
, int n
, BN_ULONG
*tmp
)
166 rp
[0] = rp
[max
- 1] = 0;
173 rp
[j
] = bn_mul_words(rp
, ap
, j
, ap
[-1]);
177 for(i
= n
- 2; i
> 0; i
--)
181 rp
[j
] = bn_mul_add_words(rp
, ap
, j
, ap
[-1]);
185 bn_add_words(r
, r
, r
, max
);
187 /* There will not be a carry */
189 bn_sqr_words(tmp
, a
, n
);
191 bn_add_words(r
, r
, tmp
, max
);
195 /* r is 2*n words in size,
196 * a and b are both n words in size. (There's not actually a 'b' here ...)
197 * n must be a power of 2.
198 * We multiply and return the result.
199 * t must be 2*n words in size
202 * a[0]*b[0]+a[1]*b[1]+(a[0]-a[1])*(b[1]-b[0])
205 void bn_sqr_recursive(BN_ULONG
*r
, BN_ULONG
*a
, int n2
, BN_ULONG
*t
)
212 printf(" bn_sqr_recursive %d * %d\n", n2
, n2
);
217 bn_sqr_normal(r
, a
, 4, t
);
226 bn_sqr_normal(r
, a
, 8, t
);
232 if(n2
< BN_SQR_RECURSIVE_SIZE_NORMAL
)
234 bn_sqr_normal(r
, a
, n2
, t
);
237 /* r=(a[0]-a[1])*(a[1]-a[0]) */
238 c1
= bn_cmp_words(a
, &(a
[n
]), n
);
241 { bn_sub_words(t
, a
, &(a
[n
]), n
); }
243 { bn_sub_words(t
, &(a
[n
]), a
, n
); }
247 /* The result will always be negative unless it is zero */
251 { bn_sqr_recursive(&(t
[n2
]), t
, n
, p
); }
253 { memset(&(t
[n2
]), 0, n2
* sizeof(BN_ULONG
)); }
254 bn_sqr_recursive(r
, a
, n
, p
);
255 bn_sqr_recursive(&(r
[n2
]), &(a
[n
]), n
, p
);
257 /* t[32] holds (a[0]-a[1])*(a[1]-a[0]), it is negative or zero
258 * r[10] holds (a[0]*b[0])
259 * r[32] holds (b[1]*b[1])
262 c1
= (int)(bn_add_words(t
, r
, &(r
[n2
]), n2
));
264 /* t[32] is negative */
265 c1
-= (int)(bn_sub_words(&(t
[n2
]), t
, &(t
[n2
]), n2
));
267 /* t[32] holds (a[0]-a[1])*(a[1]-a[0])+(a[0]*a[0])+(a[1]*a[1])
268 * r[10] holds (a[0]*a[0])
269 * r[32] holds (a[1]*a[1])
270 * c1 holds the carry bits
272 c1
+= (int)(bn_add_words(&(r
[n
]), &(r
[n
]), &(t
[n2
]), n2
));
277 ln
= (lo
+ c1
)&BN_MASK2
;
280 /* The overflow will stop before we over write
281 * words we should not overwrite */
282 if(ln
< (BN_ULONG
)c1
)
288 ln
= (lo
+ 1)&BN_MASK2
;