diff options
Diffstat (limited to 'sha3.c')
-rw-r--r-- | sha3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ static inline void permute(uint64_t a[static 25], const size_t num_rounds) { rho(a); pi(a); chi(a); - iota(a, i); + iota(a, 24 - num_rounds + i); } } |