projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aaa384c
)
use bn_wexpand instead of bn_expand2 (the latter is not needed here,
author
Bodo Möller
<bodo@openssl.org>
Sat, 3 Aug 2002 17:51:29 +0000
(17:51 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Sat, 3 Aug 2002 17:51:29 +0000
(17:51 +0000)
and it does not yet work correctly)
Submitted by: Douglas Stebila
crypto/bn/bn_gf2m.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_gf2m.c
b/crypto/bn/bn_gf2m.c
index bf7031b3ab3a152068d91c7adbadcd5c3359fd01..c969685c87467a0b18d4c2580009f1fa77bd72e6 100644
(file)
--- a/
crypto/bn/bn_gf2m.c
+++ b/
crypto/bn/bn_gf2m.c
@@
-284,7
+284,7
@@
int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
if (a->top < b->top) { at = b; bt = a; }
else { at = a; bt = b; }
- bn_
expand2
(r, at->top);
+ bn_
wexpand
(r, at->top);
for (i = 0; i < bt->top; i++)
{