sha3
sha3 copied to clipboard
pre-increment the loop counters in KeccakSponge.c
Great algo. Might be better to put the j++ loop increments as pre-increment ops, unless one is sure about a compilers optimizations. The ++j is generally thought to require fewer ops.
Cheers