You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in file gost_crypt.c line 700:
instead of "c->count += 8;"
must be "c->count += j;"
Expected: when encrypting last block, which length doesn't match "% 8 == 0", then only first j bytes are using for encrypting, so c->count must be increased by j.
Actual: c->count increases by 8;
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
in file gost_crypt.c line 700:
instead of "c->count += 8;"
must be "c->count += j;"
Expected: when encrypting last block, which length doesn't match "% 8 == 0", then only first j bytes are using for encrypting, so c->count must be increased by j.
Actual: c->count increases by 8;
The text was updated successfully, but these errors were encountered: