summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-10-30 01:03:31 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-10-30 01:03:31 +0000
commitc4db1a8b5c2d72b765614b2115f36ae5ac8d22bd (patch)
treef857e348d695bc421d00c638be52c64de41d59ee /crypto/bn/bn_div.c
parentf7939fcd9a851f8c78510d9055bf5abb8b8e71a8 (diff)
This fixes a couple of cases where an inconsistent BIGNUM could be passed as
input to a function.
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index 580d1201bc..b2efe5bb53 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -348,11 +348,16 @@ X) -> 0x%08X\n",
l0=bn_mul_words(tmp->d,sdiv->d,div_n,q);
wnum.d--; wnum.top++;
tmp->d[div_n]=l0;
+ /* XXX: Couldn't we replace this with;
+ * tmp->top = div_n;
+ * bn_fix_top(tmp);
+ */
for (j=div_n+1; j>0; j--)
if (tmp->d[j-1]) break;
tmp->top=j;
j=wnum.top;
+ bn_fix_top(&wnum);
if (!BN_sub(&wnum,&wnum,tmp)) goto err;
snum->top=snum->top+wnum.top-j;
@@ -373,6 +378,7 @@ X) -> 0x%08X\n",
* BN_rshift() will overwrite it.
*/
int neg = num->neg;
+ bn_fix_top(snum);
BN_rshift(rm,snum,norm_shift);
if (!BN_is_zero(rm))
rm->neg = neg;