diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-02-07 20:33:54 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-02-07 20:33:54 +0100 |
commit | aaa48e1bbe053199dc49fcb5bbd565b08d5453ef (patch) | |
tree | 80fac097e21cfbc0e6c77326becb6b2acbf290ea /c/sha3.c | |
parent | error in java version detected (c is identical) + c implemention other wise complete but not optimised (and misses blksize reading) (diff) | |
download | sha3sum-aaa48e1bbe053199dc49fcb5bbd565b08d5453ef.tar.gz sha3sum-aaa48e1bbe053199dc49fcb5bbd565b08d5453ef.tar.bz2 sha3sum-aaa48e1bbe053199dc49fcb5bbd565b08d5453ef.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'c/sha3.c')
-rw-r--r-- | c/sha3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -382,7 +382,7 @@ extern void initialise(long bitrate, long capacity, long output) w = b / 25; l = lb(w); nr = 12 + (l << 1); - wmod = (1L << w) - 1L; + wmod = w == 64 ? -1LL ? (1LL << w) - 1LL; S = (llong*)malloc(25 * sizeof(llong)); M = (byte*)malloc(mlen = (r * b) >> 2); mptr = 0; |