diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-05-03 02:57:34 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-05-03 02:57:34 +0200 |
commit | 4e0ea4634f06bfc7389a435b56366f71894a8d9f (patch) | |
tree | a597b0a7c96e3ef5cdbbd40cca4e68cf1e904b52 /c | |
parent | m (diff) | |
download | sha3sum-4e0ea4634f06bfc7389a435b56366f71894a8d9f.tar.gz sha3sum-4e0ea4634f06bfc7389a435b56366f71894a8d9f.tar.bz2 sha3sum-4e0ea4634f06bfc7389a435b56366f71894a8d9f.tar.xz |
apply change made to pure-java to other versions
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'c')
-rw-r--r-- | c/sha3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -619,7 +619,7 @@ extern byte* digest(byte* msg, long msglen) byte* message; byte* rc; long rr = r >> 3, len; - long nn = n >> 3, olen; + long nn = (n + 7) >> 3, olen; long ww = w >> 3, ni; long i, j = 0, ptr = 0, _; |