mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
oops, undo previous change (was just for testing)
This commit is contained in:
parent
183847747a
commit
d28735a05b
@ -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++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user